diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-10-17 20:15:53 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-10-17 20:15:53 (GMT) |
commit | 87eee631fb1ae38aa15ebd9741a1af82dd7b4ea0 (patch) | |
tree | 0c7161ab30734ac3244aea50e6417d7c2ed913ea /Misc/NEWS | |
parent | 869bad9b5a4a51640ee97deda95913899c663333 (diff) | |
download | cpython-87eee631fb1ae38aa15ebd9741a1af82dd7b4ea0.zip cpython-87eee631fb1ae38aa15ebd9741a1af82dd7b4ea0.tar.gz cpython-87eee631fb1ae38aa15ebd9741a1af82dd7b4ea0.tar.bz2 |
#3664: The pickle module could segfault if a Pickler instance is not correctly initialized:
when a subclass forgets to call the base __init__ method,
or when __init__ is called a second time with invalid parameters
Patch by Alexandre Vassalotti.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -33,7 +33,10 @@ Core and Builtins Library ------- -- telnetlib now works completely in bytes. +- Issue #3664: The pickle module could segfault if a subclass of Pickler fails + to call the base __init__ method. + +- Issue #3725: telnetlib now works completely in bytes. - Issue #4072: Restore build_py_2to3. |