diff options
author | Christian Heimes <christian@cheimes.de> | 2013-07-01 13:18:49 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-07-01 13:18:49 (GMT) |
commit | bfafab1849a1f30ee69474a3d275bcaf17844970 (patch) | |
tree | b2605aee7c35c25de9b408ca74d9174aa7282fda /Misc | |
parent | 04926aeb2f88c39a25505e4a0474c6fb735e0f46 (diff) | |
parent | a24b4d260beafb5b45450ff46d7740bea8eaa4a9 (diff) | |
download | cpython-bfafab1849a1f30ee69474a3d275bcaf17844970.zip cpython-bfafab1849a1f30ee69474a3d275bcaf17844970.tar.gz cpython-bfafab1849a1f30ee69474a3d275bcaf17844970.tar.bz2 |
Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a
segfault inside the _pickle C extension.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -135,6 +135,9 @@ Core and Builtins Library ------- +- Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a + segfault inside the _pickle C extension. + - Issue 18240: The HMAC module is no longer restricted to bytes and accepts any bytes-like object, e.g. memoryview. Original patch by Jonas Borgström. |