diff options
author | Michele Simionato <michele.simionato@gmail.com> | 2018-07-26 06:29:35 +0200 |
---|---|---|
committer | Michele Simionato <michele.simionato@gmail.com> | 2018-07-26 06:29:35 +0200 |
commit | 0ed415ff9ecc3ca0cd064c851abc66a03e2c7647 (patch) | |
tree | 2383db0a507895279549ef1ba33c963a5e971062 | |
parent | 284adc8dded66a32cdf64319a7a4bf24fd466097 (diff) | |
download | python-decorator-git-0ed415ff9ecc3ca0cd064c851abc66a03e2c7647.tar.gz |
Fix
-rw-r--r-- | PITCHME.md | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -57,6 +57,8 @@ def add(x, y): ``` --- +The problem is that it does not really work + ```python >>> inspect.getfullargspec(add) FullArgSpec(args=[], varargs='args', varkw='kwds', defaults=None, kwonlyargs=[], kwonlydefaults=None, annotations={}) |