diff options
author | Raymond Hettinger <python@rcn.com> | 2009-05-29 04:58:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-05-29 04:58:52 (GMT) |
commit | 578a228ee265e9ce4d88c01f8d9fd57a237cfc3e (patch) | |
tree | 4e8e026d3e5c06f2048d2c872d42f2d666a93058 /Misc | |
parent | 7937d939b1e41e869ebd6a41787c186482f5950f (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |