|
|
decorate(func,
caller,
signature=None)
Decorate func with caller. |
source code
|
|
|
|
|
|
|
|
|
|
simple_decorator(caller,
signature=None)
Decorate function with caller. |
source code
|
|
|
|
simple_weak_signature_decorator(caller)
Decorate function with caller and change signature to accept
arbitrary additional arguments. |
source code
|
|
|
|
make_weak_signature(func)
Change signature to accept arbitrary additional arguments. |
source code
|
|
|
|
|
|
|
func_composition(func)
Return composition (decorator wise) of function. |
source code
|
|
|
|
func_original(func)
Return original (undecorated) function. |
source code
|
|
|
|
|
|
|
func_eq(f,
g)
Check if functions are identical. |
source code
|
|