summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichele Simionato <michele.simionato@gmail.com>2015-09-25 04:36:59 +0200
committerMichele Simionato <michele.simionato@gmail.com>2015-09-25 04:36:59 +0200
commit7af57a4cf63a20b6121d235bebe206260409a585 (patch)
treeaacdc119953ddac839aa3078a74b198e5a55a7ed
parentf6f1f69f576e438b3aad336d3faa20d1012b3aeb (diff)
downloadpython-decorator-git-4.0.4.tar.gz
Bumped version to 4.0.44.0.4
-rw-r--r--CHANGES.txt2
-rw-r--r--docs/README.rst2
-rw-r--r--documentation.pdf10
-rw-r--r--src/decorator.py2
4 files changed, 9 insertions, 7 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index bfa2802..43cc1b9 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,6 +1,8 @@
HISTORY
--------
+4.0.4 Included a patch from Zev Benjamin: now decorated functions play well
+ with cProfile (2015/09/25)
4.0.3 Added a warning about the memoize example, as requested by Robert
Buchholz (2015/09/25)
4.0.2 docs/README.rst was not included in MANIFEST.in by accident,
diff --git a/docs/README.rst b/docs/README.rst
index c463e92..dfc3583 100644
--- a/docs/README.rst
+++ b/docs/README.rst
@@ -52,7 +52,7 @@ There are various versions of the documentation:
- `PDF version`_
.. _HTML version: http://pythonhosted.org/decorator/documentation.html
-.. _PDF version: https://github.com/micheles/decorator/blob/4.0.1/documentation.pdf
+.. _PDF version: https://github.com/micheles/decorator/blob/4.0.4/documentation.pdf
Repository
---------------
diff --git a/documentation.pdf b/documentation.pdf
index 0d49ef1..d41bc04 100644
--- a/documentation.pdf
+++ b/documentation.pdf
@@ -16,7 +16,7 @@ endobj
<< /A << /S /URI /Type /Action /URI (mailto:michele.simionato@gmail.com) >> /Border [ 0 0 0 ] /Rect [ 153.7323 704.0236 289.4623 716.0236 ] /Subtype /Link /Type /Annot >>
endobj
6 0 obj
-<< /A << /S /URI /Type /Action /URI (http://pypi.python.org/pypi/decorator/4.0.1) >> /Border [ 0 0 0 ] /Rect [ 153.7323 659.7736 338.2823 671.7736 ] /Subtype /Link /Type /Annot >>
+<< /A << /S /URI /Type /Action /URI (http://pypi.python.org/pypi/decorator/4.0.4) >> /Border [ 0 0 0 ] /Rect [ 153.7323 659.7736 338.2823 671.7736 ] /Subtype /Link /Type /Annot >>
endobj
7 0 obj
<< /Border [ 0 0 0 ] /Contents () /Dest [ 52 0 R /XYZ 62.69291 765.0236 0 ] /Rect [ 62.69291 560.0236 121.0229 572.0236 ] /Subtype /Link /Type /Annot >>
@@ -269,7 +269,7 @@ endobj
<< /Outlines 83 0 R /PageLabels 125 0 R /PageMode /UseNone /Pages 103 0 R /Type /Catalog >>
endobj
82 0 obj
-<< /Author (Michele Simionato) /CreationDate (D:20150925041751-01'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\))
+<< /Author (Michele Simionato) /CreationDate (D:20150925043543-01'00') /Creator (\(unspecified\)) /Keywords () /Producer (ReportLab PDF Library - www.reportlab.com) /Subject (\(unspecified\))
/Title (The decorator module) >>
endobj
83 0 obj
@@ -403,7 +403,7 @@ q
1 0 0 1 91.03937 3 cm
q
0 0 0 rg
-BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (4.0.1 \(2015-09-25\)) Tj T* ET
+BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (4.0.4 \(2015-09-25\)) Tj T* ET
Q
Q
q
@@ -446,7 +446,7 @@ q
q
0 0 .501961 rg
0 0 .501961 RG
-BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (http://pypi.python.org/pypi/decorator/4.0.1) Tj T* ET
+BT 1 0 0 1 0 2 Tm /F1 10 Tf 12 TL (http://pypi.python.org/pypi/decorator/4.0.4) Tj T* ET
Q
Q
q
@@ -8905,7 +8905,7 @@ xref
trailer
<< /ID
% ReportLab generated PDF document -- digest (http://www.reportlab.com)
- [(|\336\243I\337\2357i\202Y\266\006>\374\341\361) (|\336\243I\337\2357i\202Y\266\006>\374\341\361)]
+ [(\227\221@\343e\271\027\027\375q\340'\256\220`\354) (\227\221@\343e\271\027\027\375q\340'\256\220`\354)]
/Info 82 0 R /Root 81 0 R /Size 147 >>
startxref
311044
diff --git a/src/decorator.py b/src/decorator.py
index 760193b..7efcb6f 100644
--- a/src/decorator.py
+++ b/src/decorator.py
@@ -33,7 +33,7 @@ for the documentation.
"""
from __future__ import print_function
-__version__ = '4.0.3'
+__version__ = '4.0.4'
import re
import sys