summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-03-12 23:49:57 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-03-12 23:49:57 (GMT)
commitfda7a8ce78cdc46c6728ad9cd82c4b3eccd0dd92 (patch)
treea47ff8b56cf3a15d4056da86ac92bda314514be4 /Misc
parent981c3bde8de59bd516f26e435d01788df3d5de56 (diff)
downloadcpython-fda7a8ce78cdc46c6728ad9cd82c4b3eccd0dd92.zip
cpython-fda7a8ce78cdc46c6728ad9cd82c4b3eccd0dd92.tar.gz
cpython-fda7a8ce78cdc46c6728ad9cd82c4b3eccd0dd92.tar.bz2
#17368: Fix an off-by-one error in the Python JSON decoder that caused a failure while decoding empty object literals when object_pairs_hook was specified.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 992b70e..d861538 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -214,6 +214,10 @@ Core and Builtins
Library
-------
+- Issue #17368: Fix an off-by-one error in the Python JSON decoder that caused
+ a failure while decoding empty object literals when object_pairs_hook was
+ specified.
+
- Issue #17278: Fix a crash in heapq.heappush() and heapq.heappop() when
the list is being resized concurrently.