module documentation

Decorator module, see http://pypi.python.org/pypi/decorator for the documentation.

Class ContextManager No class docstring; 1/1 method documented
Class FunctionMaker An object with the ability to create functions with a given signature. It has attributes name, doc, module, signature, defaults, dict and methods update and make.
Function __init__ Undocumented
Function append Append ``a`` to the list of the virtual ancestors, unless it is already included.
Function decorate decorate(func, caller) decorates a function using a caller.
Function decorator decorator(caller) converts a caller function into a decorator
Function dispatch_on Factory of decorators turning a function into a generic function dispatching on the given arguments.
Function get_init Undocumented
Function getargspec A replacement for inspect.getargspec
Constant DEF Undocumented
Variable __version__ Undocumented
Variable ArgSpec Undocumented
Variable contextmanager Undocumented
Variable init Undocumented
Variable n_args Undocumented
def __init__(self, g, *a, **k): (source)

Undocumented

def append(a, vancestors): (source)

Append ``a`` to the list of the virtual ancestors, unless it is already included.

def decorate(func, caller): (source)

decorate(func, caller) decorates a function using a caller.

def decorator(caller, _func=None): (source)

decorator(caller) converts a caller function into a decorator

def dispatch_on(*dispatch_args): (source)

Factory of decorators turning a function into a generic function dispatching on the given arguments.

def get_init(cls): (source)

Undocumented

def getargspec(f): (source)

A replacement for inspect.getargspec

Undocumented

Value
re.compile(r'\s*def\s*([_\w][_\w\d]*)\s*\(')
__version__: str = (source)

Undocumented

Undocumented

contextmanager = (source)

Undocumented

Undocumented

Undocumented