summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-04 18:28:02 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-04 18:28:02 (GMT)
commit560f7647ce5991140e215a7ac775130798c92dc8 (patch)
tree7b19296ddf3d8a0d111766226cff9367f77bd619 /Misc
parent5626eec0c2f62999967eff0ab6aa8ad329e8571b (diff)
downloadcpython-560f7647ce5991140e215a7ac775130798c92dc8.zip
cpython-560f7647ce5991140e215a7ac775130798c92dc8.tar.gz
cpython-560f7647ce5991140e215a7ac775130798c92dc8.tar.bz2
Issue #8814: function annotations (the `__annotations__` attribute)
are now included in the set of attributes copied by default by functools.wraps and functools.update_wrapper. Patch by Terrence Cole.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index e7ec4ca..41d314e 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -154,6 +154,7 @@ Steve Clift
Nick Coghlan
Josh Cogliati
Dave Cole
+Terrence Cole
Benjamin Collar
Jeffery Collins
Robert Collins
diff --git a/Misc/NEWS b/Misc/NEWS
index 22f1d0f..6bc3e5c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,10 @@ Extensions
Library
-------
+- Issue #8814: function annotations (the ``__annotations__`` attribute)
+ are now included in the set of attributes copied by default by
+ functools.wraps and functools.update_wrapper. Patch by Terrence Cole.
+
- Issue #2944: asyncore doesn't handle connection refused correctly.
- Issue #4184: Private attributes on smtpd.SMTPChannel made public and