diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-29 20:31:25 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-10-29 20:31:25 (GMT) |
commit | 84745ab464f9195192d741f79407b06daa4eba29 (patch) | |
tree | b7e8c97a073f3650e2807daa1ddb219669e8fbc7 /Misc | |
parent | dc6b933d2333e3928c73554a3dcf171ab4611b7d (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |