summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2018-07-26 06:29:35 +0200
committerMichele Simionato <michele.simionato@gmail.com>2018-07-26 06:29:35 +0200
commit0ed415ff9ecc3ca0cd064c851abc66a03e2c7647 (patch)
tree2383db0a507895279549ef1ba33c963a5e971062
parent284adc8dded66a32cdf64319a7a4bf24fd466097 (diff)
downloadpython-decorator-git-0ed415ff9ecc3ca0cd064c851abc66a03e2c7647.tar.gz
Fix
-rw-r--r--PITCHME.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/PITCHME.md b/PITCHME.md
index 2b902fe..424e1e2 100644
--- a/PITCHME.md
+++ b/PITCHME.md
@@ -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={})