diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-12 23:49:57 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-03-12 23:49:57 (GMT) |
commit | fda7a8ce78cdc46c6728ad9cd82c4b3eccd0dd92 (patch) | |
tree | a47ff8b56cf3a15d4056da86ac92bda314514be4 /Misc | |
parent | 981c3bde8de59bd516f26e435d01788df3d5de56 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |