decorators

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Henry

    #1

    decorators

    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:



    What exactly do I use decorators for?

  • sjdevnull@yahoo.com

    #2
    Re: decorators

    John Henry wrote:
    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:
    >

    >
    What exactly do I use decorators for?
    Metafunctions. Saying

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

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

    Comment

    Working...