diff options
author | Georg Brandl <georg@python.org> | 2013-10-27 05:52:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-27 05:52:14 (GMT) |
commit | ca580f4ec1b08f492cbc8673e316f5cadf47aec2 (patch) | |
tree | f008e13828169e119f8a940c3678d793c3bd11cf /Misc | |
parent | 246eb1105842c746a80865cd492502ad413949c2 (diff) | |
download | cpython-ca580f4ec1b08f492cbc8673e316f5cadf47aec2.zip cpython-ca580f4ec1b08f492cbc8673e316f5cadf47aec2.tar.gz cpython-ca580f4ec1b08f492cbc8673e316f5cadf47aec2.tar.bz2 |
Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit
line length. Patch by Emil Lind.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -5,9 +5,9 @@ Python News What's New in Python 3.3.3 release candidate 1? =============================================== -*Not yet released, see sections below for changes released in 3.3.2* +.. *Not yet released, see sections below for changes released in 3.3.2* -.. *Release date: TBD* +*Release date: 27-Oct-2013* Core and Builtins ----------------- @@ -81,6 +81,9 @@ Core and Builtins Library ------- +- Issue #16039: CVE-2013-1752: Change use of readline in imaplib module to limit + line length. Patch by Emil Lind. + - Issue #19393: Fix symtable.symtable function to not be confused when there are functions or classes named "top". @@ -425,7 +428,8 @@ C API ----- - Issue #18351: Fix various issues with a helper function in importlib used - by PyImport_ExecCodeModuleWithPathnames() (and thus by extension PyImport_ExecCodeModule() and PyImport_ExecCodeModuleEx()). + by PyImport_ExecCodeModuleWithPathnames() (and thus by extension + PyImport_ExecCodeModule() and PyImport_ExecCodeModuleEx()). IDLE ---- |