vote up 2 vote down star
1

like @login_required?

flag

40% accept rate
9  
What did you find when you read the documentation? – S.Lott Jun 28 at 2:28
1  
duplicate: stackoverflow.com/questions/939426/… – wr Jun 29 at 12:45
2  
Shore seems to be a professional question poster. – BoltBait Aug 25 at 17:32

6 Answers

vote up 27 vote down

It is decorator syntax.

A function definition may be wrapped by one or more decorator expressions. Decorator expressions are evaluated when the function is defined, in the scope that contains the function definition. The result must be a callable, which is invoked with the function object as the only argument. The returned value is bound to the function name instead of the function object. Multiple decorators are applied in nested fashion.

So doing something like this:

@login_required
def my_function():
    pass

Is just a fancy way of doing this:

def my_function():
    pass
my_function = login_required(my_function)

For more, check out the documentation.

link|flag
1  
:) Nice edit ... deletes own answer :P – Aiden Bell Jun 27 at 22:07
1  
Also +1 ... FTW – Aiden Bell Jun 27 at 22:08
vote up 2 vote down

If you ask this type of question you will probably be interested in the other hidden features of Python.

link|flag
vote up 1 vote down

A decorator, also called pie syntax. it allows you to "decorate" a function with another function. You already had decoration with staticmethod() and classmethod(). The pie syntax makes it more easy to access and extend.

link|flag
"pie syntax"? Never heard of that before. Can you cite its origin or explain more? – duffymo Jun 27 at 22:24
from the wiki, during the discussion about the choice. I think it comes from java traditional naming wiki.python.org/moin/… – Stefano Borini Jun 28 at 0:31
vote up 1 vote down

That specific decorator looks like it comes from Django.

It might help you get a better understanding by reading the Django documentation about that decorator.

link|flag
vote up 1 vote down

It's a decorator. More here: http://www.ibm.com/developerworks/linux/library/l-cpdecor.html

link|flag
that is not an answer to the question. – NicDumZ Jun 28 at 0:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.