From: Christian Heimes Date: Mon, 1 Jul 2013 13:18:49 +0000 (+0200) Subject: Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a X-Git-Tag: v3.4.0a1~347^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bfafab1849a1f30ee69474a3d275bcaf17844970;p=python Issue #18339: Negative ints keys in unpickler.memo dict no longer cause a segfault inside the _pickle C extension. --- bfafab1849a1f30ee69474a3d275bcaf17844970 diff --cc Misc/NEWS index 92d7c394ff,37ee7fc79e..ed51b38f1f --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -135,9 -38,9 +135,12 @@@ Core and Builtin 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. + - Issue #18224: Removed pydoc script from created venv, as it causes problems on Windows and adds no value over and above python -m pydoc ...