like @login_required?
feedback
|
|
It is decorator syntax.
So doing something like this:
Is just a fancy way of doing this:
For more, check out the documentation. | |||||||||
feedback
|
|
If you ask this type of question you will probably be interested in the other hidden features of Python. | |||
|
feedback
|
|
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. | |||||
feedback
|
|
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. | |||
|
feedback
|
|
It's a decorator. More here: http://www.ibm.com/developerworks/linux/library/l-cpdecor.html | ||||
|
feedback
|
|
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). | ||||
|
feedback
|