summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-01-26 11:16:30 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-01-26 11:16:30 (GMT)
commit47efb4a5dc9cdf3f59362beb9a04c5c6bdd09f81 (patch)
treeb3e5115125360618a02a9615a643cbebe4aa7e75 /Misc
parent4e5d9eac2ca03debecbb9c6ed873303d04ead06a (diff)
downloadcpython-47efb4a5dc9cdf3f59362beb9a04c5c6bdd09f81.zip
cpython-47efb4a5dc9cdf3f59362beb9a04c5c6bdd09f81.tar.gz
cpython-47efb4a5dc9cdf3f59362beb9a04c5c6bdd09f81.tar.bz2
Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 45d27be..7845428 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -218,6 +218,8 @@ Core and Builtins
Library
-------
+- Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.
+
- Issue #18518: timeit now rejects statements which can't be compiled outside
a function or a loop (e.g. "return" or "break").