William Dode wrote: > Hi, > > What do you think about adding access of routing_args in Request ? > > I mean : > req.routing_args instead of req.environ['wsgiorg.routing_args']
They are available in req.urlvars, but only the named variables, not the positional ones. I'm not sure how to expose both; maybe as two attributes instead of one. Handling the tuple is actually kind of awkward, so a direct accessor isn't as nice. > Maybe even inside params ? Yeah, I could see the benefit of that. -- Ian Bicking : [EMAIL PROTECTED] : http://blog.ianbicking.org : Write code, do good : http://topp.openplans.org/careers _______________________________________________ Paste-users mailing list [email protected] http://webwareforpython.org/cgi-bin/mailman/listinfo/paste-users
