文件名称:undecorate:让你的装饰被取消
文件大小:7KB
文件格式:ZIP
更新时间:2024-06-24 15:01:41
Python
不装饰 让你的装饰被取消 安装 $ pip install undecorate 用法 >>> from undecorate import unwrap, unwrappable >>> >>> @ unwrappable ... def pack ( func ): ... def wrapper ( args , kwargs ): ... return func( * args, ** kwargs) ... return wrapper ... >>> @ pack ... def myfunc ( a , b = None , c = None ): ... return (a, b, c) ... >>> myfunc( ' a ' , b = ' b ' ) Traceback (most recent call last):
【文件预览】:
undecorate-master
----setup.py(1KB)
----.gitignore(46B)
----.travis.yml(142B)
----MANIFEST.in(22B)
----LICENSE(1KB)
----HISTORY.rst(665B)
----setup.cfg(22B)
----undecorate.py(5KB)
----RELEASING.rst(483B)
----test_undecorate.py(5KB)
----README.rst(686B)
----tox.ini(119B)