summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-29 20:31:25 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-29 20:31:25 (GMT)
commit84745ab464f9195192d741f79407b06daa4eba29 (patch)
treeb7e8c97a073f3650e2807daa1ddb219669e8fbc7 /Misc
parentdc6b933d2333e3928c73554a3dcf171ab4611b7d (diff)
downloadcpython-84745ab464f9195192d741f79407b06daa4eba29.zip
cpython-84745ab464f9195192d741f79407b06daa4eba29.tar.gz
cpython-84745ab464f9195192d741f79407b06daa4eba29.tar.bz2
Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses of a given type.
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 cefc0ed..04bcd7b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Projected release date: 2013-11-24
Core and Builtins
-----------------
+- Issue #17936: Fix O(n**2) behaviour when adding or removing many subclasses
+ of a given type.
+
- Issue #19428: zipimport now handles errors when reading truncated or invalid
ZIP archive.