summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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')
```