On Sunday, October 16, 2011 2:00:54 PM UTC-4, Tito Garrido wrote: > > Yes! That means that I am getting crazy :-) > > So there is no way to have a funtion called request and use request.vars, > right? I'm working on a legacy system that has this function...
It's not just request.vars that you'd be missing, the request objects holds lots of things -- you don't want to re-assign that variable. When you say a legacy system has a function called 'request', I assume you mean it's in a module you are importing, right? Can't you keep the 'request' function in the module's namespace? That is, do import mymodule, and then refer to mymodule.request? Anthony

