diff options
author | Raymond Hettinger <python@rcn.com> | 2009-05-29 04:52:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-05-29 04:52:27 (GMT) |
commit | 2bcde144ae79c72de05196f7da4ed32396e398d6 (patch) | |
tree | 290c3629ef6f8d99dc59a0d0dadafdfb353efca6 /Misc/NEWS | |
parent | ebe99ab34444d911c6594d07de81966592cc9e85 (diff) | |
download | cpython-2bcde144ae79c72de05196f7da4ed32396e398d6.zip cpython-2bcde144ae79c72de05196f7da4ed32396e398d6.tar.gz cpython-2bcde144ae79c72de05196f7da4ed32396e398d6.tar.bz2 |
Issue 5982: Classmethod and staticmethod expose wrapped function with __func__.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |