summaryrefslogtreecommitdiff
path: root/docs/documentation.md
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2022-01-07 08:51:31 +0100
committerMichele Simionato <michele.simionato@gmail.com>2022-01-07 08:51:31 +0100
commitad013a2c1ad7969963acf3dea948632be387f5a0 (patch)
tree02cee850526a927df94213723f52e356a0fedc57 /docs/documentation.md
parent5a2023203948ff297cc2e482aa66f84d75d1d1f8 (diff)
downloadpython-decorator-git-ad013a2c1ad7969963acf3dea948632be387f5a0.tar.gz
Updated changelog and bumped version to 5.1.15.1.1
Diffstat (limited to 'docs/documentation.md')
-rw-r--r--docs/documentation.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index cbbc540..10ddb5f 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -3,9 +3,9 @@
|Author | Michele Simionato|
|---|---|
|E-mail | michele.simionato@gmail.com|
-|Version| 5.1.0 (2021-09-11)|
+|Version| 5.1.1 (2022-01-07)|
|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9, 3.10|
-|Download page| http://pypi.python.org/pypi/decorator/5.1.0|
+|Download page| http://pypi.python.org/pypi/decorator/5.1.1|
|Installation| ``pip install decorator``|
|License | BSD license|
@@ -923,7 +923,7 @@ You can use a ``FunctionMaker`` to implement that functionality as follows:
is not a signature-preserving decorator.
"""
return FunctionMaker.create(
- func, 'return decfunc(%(signature)s)',
+ func, 'return decfunc(%(shortsignature)s)',
dict(decfunc=dec(func)), __wrapped__=func)
```