class documentation

class api(object): (source)

Constructor: api(**kwargs)

View In Hierarchy

Undocumented

Method __call__ If there are decorator arguments, __call__() is only called once, as part of the decoration process! You can only give it a single argument, which is the function object.
Method __init__ If there are decorator arguments, the function to be decorated is not passed to the constructor!
Instance Variable kwargs Undocumented
def __call__(self, f): (source)

If there are decorator arguments, __call__() is only called once, as part of the decoration process! You can only give it a single argument, which is the function object.

def __init__(self, **kwargs): (source)

If there are decorator arguments, the function to be decorated is not passed to the constructor!

Undocumented