summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2021-04-02 17:45:41 +0200
committerMichele Simionato <michele.simionato@gmail.com>2021-04-02 17:45:41 +0200
commit5f46940c80a7c9be9cc92f9300fc7ce6f970c927 (patch)
tree22f99935cd338564b7f96d0eeeb8d89c6c4d2e05 /src
parent50fa96bf370146602b02ece8378cdafa9f57684f (diff)
downloadpython-decorator-git-5f46940c80a7c9be9cc92f9300fc7ce6f970c927.tar.gz
Release 5.0.2
Diffstat (limited to 'src')
-rw-r--r--src/decorator.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decorator.py b/src/decorator.py
index e7f5cf4..6db2e64 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.1'
+__version__ = '5.0.2'
DEF = re.compile(r'\s*def\s*([_\w][_\w\d]*)\s*\(')
POS = inspect.Parameter.POSITIONAL_OR_KEYWORD