[Python-Dev] @decorators and PEP 318 (original) (raw)
Anthony Baxter anthony at interlink.com.au
Tue Aug 3 04:26:45 CEST 2004
- Previous message: [Python-Dev] @decorators and PEP 318
- Next message: [Python-Dev] @decorators and PEP 318
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Skip Montanaro wrote:
I'll be happy to update PEP 318 to conform to the pie decorator syntax. Can someone describe the application order? If I have
@ decorator1 @ decorator2 def func(...): ... Which decorator is applied first to the function object, decorator1 or decorator2?
func = decorator1(decorator2(func))
I hope to check in a revised 318 this afternoon.
Anthony
- Previous message: [Python-Dev] @decorators and PEP 318
- Next message: [Python-Dev] @decorators and PEP 318
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]