commit | 01d7eba3162af8a0f62d7636cbb44440901b3909 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Feb 19 01:10:25 2012 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Feb 19 01:10:25 2012 -0500 |
tree | cd38f465ca59199a663e3846d45384cfa5579137 | |
parent | dc1d3eda1f7fe45f111f6e6d58635de06e04e655 [diff] [blame] |
allow arbitrary attributes on classmethod and staticmethod (closes #14051)
diff --git a/Misc/NEWS b/Misc/NEWS index 1da9d8a..61b4035 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ 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.