decorators

S

sjdevnull

John said:
I must be very thick. I keep reading about what decorators are and I
still don't have a good feel about it. See, for example:

http://alex.dojotoolkit.org/?p=564

What exactly do I use decorators for?

Metafunctions. Saying

@mydecorator
def foo(...):
...

is just an alternative way of writing:
def foo(...):
...
foo = mydecorator(foo)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,430
Messages
2,571,676
Members
48,796
Latest member
Greg L.

Latest Threads

Top