Cope 2.5.0
My personal "standard library" of all the generally useful code I've written for various projects over the years
Loading...
Searching...
No Matches

◆ decorator

str Cope.boilerplate.decorator
Initial value:
1= """
2 def decorator(*decoratorArgs, **decoratorKwArgs):
3 def wrap(func):
4 def innerWrap(*funcArgs, **funcKwArgs):
5 return func(*funcArgs, **funcKwArgs)
6 return innerWrap
7 return wrap
8 """

Definition at line 6 of file boilerplate.py.