I have a reasonably large project in Django, which is a reasonably large framework, and I'm using a reasonably large number of apps, middlewares, context processors, etc. The scale means that when a part of the codebase runs for requests where I don't want it to, identifying why it did is hard. Straight code inspection is much too time-consuming, as is single-stepping through the entire request in a debugger.
In this particular case, my problem is that I'm getting "Vary: Cookie" set on every response, including some that I want heavily cached and where I shouldn't need any cookies. I suspect, but don't know how to prove, that some middleware or context processor is accessing request.session even when it doesn't use the result--though it might be an indirect access, such as through request.user. And of course it might be something else entirely.
In Python, how would you trace from an effect ("the Vary header was added to the response") back to its cause in a large codebase?
A['x'] = yandAisn't a builtin object then you can just replace A.__setitem__ with your own that will check, whether "Vary: Cookie" header has appeared after executing__setitem__, and if so, just print call stack which will guide you to the thing that caused it. Another variant is to write a debugger that will execute your program line by line and check each time, if the header you need has been appended to particular object. – alex_jordan Nov 11 '12 at 17:45