diff options
| author | Michele Simionato <michele.simionato@gmail.com> | 2019-10-27 09:06:12 +0100 |
|---|---|---|
| committer | Michele Simionato <michele.simionato@gmail.com> | 2019-10-27 09:06:12 +0100 |
| commit | 87f16a038352488cc9cf39ee94a1c744e42fb42e (patch) | |
| tree | 66366eb9c065bbdd52024fb0562bf4a338eb052e /src | |
| parent | 528669820f8285072f16323fa23678d61ec0ed4e (diff) | |
| download | python-decorator-git-87f16a038352488cc9cf39ee94a1c744e42fb42e.tar.gz | |
Changed description to Decorators for Humans
Diffstat (limited to 'src')
| -rw-r--r-- | src/decorator.py | 2 | ||||
| -rw-r--r-- | src/tests/documentation.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/decorator.py b/src/decorator.py index 34fd527..78d227f 100644 --- a/src/decorator.py +++ b/src/decorator.py @@ -40,7 +40,7 @@ import operator import itertools import collections -__version__ = '4.4.0' +__version__ = '4.4.1' if sys.version >= '3': from inspect import getfullargspec diff --git a/src/tests/documentation.py b/src/tests/documentation.py index 6a77614..2888ea1 100644 --- a/src/tests/documentation.py +++ b/src/tests/documentation.py @@ -12,14 +12,14 @@ except ImportError: from decorator import (decorator, decorate, FunctionMaker, contextmanager, dispatch_on, __version__) -doc = r"""The ``decorator`` module +doc = r"""Decorators for Humans ---------------------------------- |Author | Michele Simionato| |---|---| |E-mail | michele.simionato@gmail.com| |Version| $VERSION ($DATE)| -|Supports| Python 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7| +|Supports| Python 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8| |Download page| http://pypi.python.org/pypi/decorator/$VERSION| |Installation| ``pip install decorator``| |License | BSD license| |
