summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-10-20 23:10:55 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-10-20 23:10:55 (GMT)
commit566a2be95c3aba65302d3d5b8108b27f810e1eaf (patch)
treee093ba0634bea66fa1561c13c88eccccc0aae299 /Misc/NEWS
parenta0e768ccc250dbe6ffab812b7964538013ae36c4 (diff)
downloadcpython-566a2be95c3aba65302d3d5b8108b27f810e1eaf.zip
cpython-566a2be95c3aba65302d3d5b8108b27f810e1eaf.tar.gz
cpython-566a2be95c3aba65302d3d5b8108b27f810e1eaf.tar.bz2
#18958: Improve error message for json.load(s) while passing a string that starts with a UTF-8 BOM.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index bff7097..af66063 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -62,6 +62,9 @@ Core and Builtins
Library
-------
+- Issue #18958: Improve error message for json.load(s) while passing a string
+ that starts with a UTF-8 BOM.
+
- Issue #19307: Improve error message for json.load(s) while passing objects
of the wrong type.