summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2013-11-07 17:46:53 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2013-11-07 17:46:53 (GMT)
commite75fc148136bbef192c5572c14f3abf1f67abc57 (patch)
treefd2dc5da77e9fb8b242979d94a20242c3b6d5d80 /Misc
parentd0293596b85f362be990dcb4892ba7c544f51fb8 (diff)
downloadcpython-e75fc148136bbef192c5572c14f3abf1f67abc57.zip
cpython-e75fc148136bbef192c5572c14f3abf1f67abc57.tar.gz
cpython-e75fc148136bbef192c5572c14f3abf1f67abc57.tar.bz2
Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.
Patch by Andrei Dorian Duma.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d76c484..107d084 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Projected release date: 2013-11-24
Core and Builtins
-----------------
+- Issue #19514: Deduplicate some _Py_IDENTIFIER declarations.
+ Patch by Andrei Dorian Duma.
+
- Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses
of a given type.