summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-02 18:22:50 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-02 18:22:50 +0200
commit9bed6133379b947febd6e724172abf9047b75957 (patch)
tree307e0e645ef5d94ce04608e67daea8a4affccb7b
parent2db03cbc1e917bd0679045d3eeeed76cd42c44d0 (diff)
downloadpython-decorator-git-9bed6133379b947febd6e724172abf9047b75957.tar.gz
Tried to upload again with twine
-rw-r--r--docs/documentation.md4
-rw-r--r--src/decorator.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/documentation.md b/docs/documentation.md
index a06e3cb..95a0903 100644
--- a/docs/documentation.md
+++ b/docs/documentation.md
@@ -4,9 +4,9 @@ Decorators for Humans
|Author | Michele Simionato|
|---|---|
|E-mail | michele.simionato@gmail.com|
-|Version| 5.0.2 (2021-04-02)|
+|Version| 5.0.3 (2021-04-02)|
|Supports| Python 3.5, 3.6, 3.7, 3.8, 3.9|
-|Download page| http://pypi.python.org/pypi/decorator/5.0.2|
+|Download page| http://pypi.python.org/pypi/decorator/5.0.3|
|Installation| ``pip install decorator``|
|License | BSD license|
diff --git a/src/decorator.py b/src/decorator.py
index 6db2e64..1fbd1ec 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -40,7 +40,7 @@ import itertools
from contextlib import _GeneratorContextManager
from inspect import getfullargspec, iscoroutinefunction, isgeneratorfunction
-__version__ = '5.0.2'
+__version__ = '5.0.3'
DEF = re.compile(r'\s*def\s*([_\w][_\w\d]*)\s*\(')
POS = inspect.Parameter.POSITIONAL_OR_KEYWORD