summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-11-26 19:25:28 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-11-26 19:25:28 (GMT)
commitc93329b3dd6dde3de76f473f5573233cb0366d9c (patch)
tree1dba9aa32ec2384766f56c49ffd4887c3e47bd13 /Misc
parentf45bbb62110a7bbcbbf45c1a52be6de7b791b189 (diff)
downloadcpython-c93329b3dd6dde3de76f473f5573233cb0366d9c.zip
cpython-c93329b3dd6dde3de76f473f5573233cb0366d9c.tar.gz
cpython-c93329b3dd6dde3de76f473f5573233cb0366d9c.tar.bz2
Issue #11489: JSON decoder now accepts lone surrogates.
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 2e8d21c..84217e7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,8 @@ Core and Builtins
Library
-------
+- Issue #11489: JSON decoder now accepts lone surrogates.
+
- Issue #19545: Avoid chained exceptions while passing stray % to
time.strptime(). Initial patch by Claudiu Popa.