summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-05-07 14:58:09 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-05-07 14:58:09 (GMT)
commit362b95102f76d042e7f3865c1ebec5d36c79959a (patch)
treea9c0400d35a1806e92ee78378e4aae30f9492791 /Misc
parent7420b70240586b700f5cadfa0bbdffbbe6cb8e5a (diff)
downloadcpython-362b95102f76d042e7f3865c1ebec5d36c79959a.zip
cpython-362b95102f76d042e7f3865c1ebec5d36c79959a.tar.gz
cpython-362b95102f76d042e7f3865c1ebec5d36c79959a.tar.bz2
#12017: Fix segfault in json.loads() while decoding highly-nested objects using the C accelerations.
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 2e31693..fddaf09 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -314,6 +314,9 @@ Library
Extensions
----------
+- Issue #12017: Fix segfault in json.loads() while decoding highly-nested
+ objects using the C accelerations.
+
- Issue #1838: Prevent segfault in ctypes, when _as_parameter_ on a class is set
to an instance of the class.