[Python-Dev] method decorators (PEP 318) (original) (raw)
Russell Finn rfinn at opnet.com
Fri Mar 26 17:01:57 EST 2004
- Previous message: [Python-Dev] method decorators (PEP 318)
- Next message: [Python-Dev] Re: method decorators (PEP 318)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Mike Rovner wrote:
Given that attributes are part of function object dictionary, and defined at function definition time like docstring, why not:
def func(atr): {author="Guido", deprecated=True} '''doc''' pass
I came up with nearly the same idea after reading Guido's original post, except that I recommend using the existing dictionary literal syntax:
def func (args): { author: "Guido", deprecated: True} '''doc''' pass
Perhaps this was just a typo in Mike's post.
-- Russell
-- Russell S. Finn Principal Software Engineer, Software Architecture and Design OPNET Technologies, Inc.
- Previous message: [Python-Dev] method decorators (PEP 318)
- Next message: [Python-Dev] Re: method decorators (PEP 318)
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]