summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2009-05-29 04:58:52 (GMT)
committerRaymond Hettinger <python@rcn.com>2009-05-29 04:58:52 (GMT)
commit578a228ee265e9ce4d88c01f8d9fd57a237cfc3e (patch)
tree4e8e026d3e5c06f2048d2c872d42f2d666a93058 /Misc
parent7937d939b1e41e869ebd6a41787c186482f5950f (diff)
downloadcpython-578a228ee265e9ce4d88c01f8d9fd57a237cfc3e.zip
cpython-578a228ee265e9ce4d88c01f8d9fd57a237cfc3e.tar.gz
cpython-578a228ee265e9ce4d88c01f8d9fd57a237cfc3e.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 13be5e7..94405c5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- 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.