summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-07-01 13:17:45 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-07-01 13:17:45 (GMT)
commita24b4d260beafb5b45450ff46d7740bea8eaa4a9 (patch)
tree377a84158bbfeeb2b38e6714b40fb460a56f8310 /Misc
parent8a0b7756e28f9374a8a316ca9a81613cc6b6e022 (diff)
downloadcpython-a24b4d260beafb5b45450ff46d7740bea8eaa4a9.zip
cpython-a24b4d260beafb5b45450ff46d7740bea8eaa4a9.tar.gz
cpython-a24b4d260beafb5b45450ff46d7740bea8eaa4a9.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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e653925..37ee7fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,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 #18224: Removed pydoc script from created venv, as it causes problems
on Windows and adds no value over and above python -m pydoc ...