diff options
author | Michele Simionato <michele.simionato@gmail.com> | 2018-07-26 06:35:54 +0200 |
---|---|---|
committer | Michele Simionato <michele.simionato@gmail.com> | 2018-07-26 06:35:54 +0200 |
commit | e54ee57c857f787eeb85e55cd6579c9476132546 (patch) | |
tree | f8eb4a6448c2dd0002bdb632f51f419181bac60b | |
parent | e61479ac792b01ab60fd349a31b7123aadfed349 (diff) | |
download | python-decorator-git-e54ee57c857f787eeb85e55cd6579c9476132546.tar.gz |
Fix
-rw-r--r-- | PITCHME.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -75,7 +75,9 @@ The problem is that it does not really work FullArgSpec(args=[], varargs='args', varkw='kwds', defaults=None, kwonlyargs=[], kwonlydefaults=None, annotations={}) - +``` +`inspect.getfullargspec` is telling the truth +``` >>> add.__code__.co_varnames ('args', 'kwds') ``` |