like @login_required?
|
1
|
|||||||||||||
|
|
|
It is decorator syntax.
So doing something like this:
Is just a fancy way of doing this:
For more, check out the documentation. |
||||||||
|
|
|
If you ask this type of question you will probably be interested in the other hidden features of Python. |
||
|
|
|
|
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. |
||||
|
|
|
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. |
||
|
|
|
|
It's a decorator. More here: http://www.ibm.com/developerworks/linux/library/l-cpdecor.html |
|||
|
|
|
Some resources for decorator: decorator, PEP 318: Decorators for Functions and Methods, PythonDecorators and PythonDecoratorLibrary. A decorator article on DDJ and another article (blog post). |
|||
|
|
