summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2012-02-19 06:10:25 (GMT)
committerBenjamin Peterson <benjamin@python.org>2012-02-19 06:10:25 (GMT)
commit01d7eba3162af8a0f62d7636cbb44440901b3909 (patch)
treecd38f465ca59199a663e3846d45384cfa5579137 /Misc/NEWS
parentdc1d3eda1f7fe45f111f6e6d58635de06e04e655 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1da9d8a..61b4035 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.