On Tue, 15 Jul 2008 21:32:39 -0500
Ian Bicking <[EMAIL PROTECTED]> wrote:
> Etienne Robillard wrote:
> >
> > Hi all,
> >
> > I'd like to have your input and comments on using decorators
> > functions for adding extra options to the request.environ object.
> >
> > For instance, here's a decora
On Jul 15, 4:44 pm, "Mike Orr" <[EMAIL PROTECTED]> wrote:
> On Tue, Jul 15, 2008 at 1:42 PM, Etienne Robillard
>
>
>
> <[EMAIL PROTECTED]> wrote:
>
> > On Mon, 14 Jul 2008 16:09:18 -0400
> > Etienne Robillard <[EMAIL PROTECTED]> wrote:
>
> >> Hi all,
>
> >> I'd like to have your input and comment
Etienne Robillard wrote:
Hi all,
I'd like to have your input and comments on using decorators
functions for adding extra options to the request.environ object.
For instance, here's a decorator whichs adds a "scoped" session
object into request.environ:
def with_session(engine=None):
"""
Hi all,
I'd like to have your input and comments on using decorators
functions for adding extra options to the request.environ object.
For instance, here's a decorator whichs adds a "scoped" session
object into request.environ:
def with_session(engine=None):
"""
Decorator function for