summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2011-04-11 09:58:43 +0200
committerMichele Simionato <michele.simionato@gmail.com>2011-04-11 09:58:43 +0200
commit4663c0ebf270687fa922f226d3847e6f82413df1 (patch)
treedb6640fbea876a3414b47277fe8336f95381f35a /src
parent258acc07e0faf2691db298f4456aceef9b0c884d (diff)
downloadpython-decorator-git-4663c0ebf270687fa922f226d3847e6f82413df1.tar.gz
Fixed a doctest broken in Python 3.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 a7815ab..d9fb01e 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -28,7 +28,7 @@ Decorator module, see http://pypi.python.org/pypi/decorator
for the documentation.
"""
-__version__ = '3.3.0'
+__version__ = '3.3.1'
__all__ = ["decorator", "FunctionMaker", "partial"]