summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-05-29 04:52:27 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-05-29 04:52:27 (GMT)
commit2bcde144ae79c72de05196f7da4ed32396e398d6 (patch)
tree290c3629ef6f8d99dc59a0d0dadafdfb353efca6 /Misc
parentebe99ab34444d911c6594d07de81966592cc9e85 (diff)
downloadcpython-2bcde144ae79c72de05196f7da4ed32396e398d6.zip
cpython-2bcde144ae79c72de05196f7da4ed32396e398d6.tar.gz
cpython-2bcde144ae79c72de05196f7da4ed32396e398d6.tar.bz2
Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7d3a237..772ca85 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,9 @@ Core and Builtins
- Issue #6089: Fixed str.format with certain invalid field specifiers
that would raise SystemError.
+- Issue #5982: staticmethod and classmethod now expose the wrapped
+ function with __func__.
+
- Added support for multiple context managers in the same with-statement.
Deprecated contextlib.nested() which is no longer needed.