summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-12-11 05:13:53 +0100
committerMichele Simionato <michele.simionato@gmail.com>2015-12-11 05:13:53 +0100
commit925613ccf9d2f94c6bca441d4825b6232c4790e9 (patch)
treece9b6e899f19595a741c355d874361aa2a00fabc
parente0dc8b2b60cdcdc18695b9fb39810aff6cb62a1b (diff)
downloadpython-decorator-git-925613ccf9d2f94c6bca441d4825b6232c4790e9.tar.gz
Removed file x.py accidentally entered in the tarball
-rw-r--r--CHANGES.txt1
-rw-r--r--src/decorator.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index f936eb9..91b5f6b 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,7 @@
HISTORY
--------
+4.0.6 Removed a file x.py accidentally entered in the tarball (2015/12/11)
4.0.5 Documented a quirk signaled by David Goldstein when writing decorators
for functions with keyword arguments. Avoided copying the globals,
as signaled by Benjamin Peterson (2015/12/09)
diff --git a/src/decorator.py b/src/decorator.py
index 49c1747..a0c5ccd 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -40,7 +40,7 @@ import operator
import itertools
import collections
-__version__ = '4.0.5'
+__version__ = '4.0.6'
if sys.version >= '3':
from inspect import getfullargspec