diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-02-19 06:10:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-02-19 06:10:25 (GMT) |
commit | 01d7eba3162af8a0f62d7636cbb44440901b3909 (patch) | |
tree | cd38f465ca59199a663e3846d45384cfa5579137 /Misc/NEWS | |
parent | dc1d3eda1f7fe45f111f6e6d58635de06e04e655 (diff) | |
download | cpython-01d7eba3162af8a0f62d7636cbb44440901b3909.zip cpython-01d7eba3162af8a0f62d7636cbb44440901b3909.tar.gz cpython-01d7eba3162af8a0f62d7636cbb44440901b3909.tar.bz2 |
allow arbitrary attributes on classmethod and staticmethod (closes #14051)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #14051: Allow arbitrary attributes to be set of classmethod and + staticmethod. + - Issue #13020: Fix a reference leak when allocating a structsequence object fails. Patch by Suman Saha. |