summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2018-07-26 06:35:54 +0200
committerMichele Simionato <michele.simionato@gmail.com>2018-07-26 06:35:54 +0200
commite54ee57c857f787eeb85e55cd6579c9476132546 (patch)
treef8eb4a6448c2dd0002bdb632f51f419181bac60b
parente61479ac792b01ab60fd349a31b7123aadfed349 (diff)
downloadpython-decorator-git-e54ee57c857f787eeb85e55cd6579c9476132546.tar.gz
Fix
-rw-r--r--PITCHME.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/PITCHME.md b/PITCHME.md
index f35a724..982e260 100644
--- a/PITCHME.md
+++ b/PITCHME.md
@@ -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')
```