summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-10-17 07:12:41 (GMT)
committerGitHub <noreply@github.com>2019-10-17 07:12:41 (GMT)
commit9c11029bb41caab5576f354fbf808a5e91325bb0 (patch)
tree882cf98dd7a6f04626700384e236424ab120b0b5 /Misc
parenta661392f8fb5ac4fc095aa1845d1eb7a25c4e9be (diff)
downloadcpython-9c11029bb41caab5576f354fbf808a5e91325bb0.zip
cpython-9c11029bb41caab5576f354fbf808a5e91325bb0.tar.gz
cpython-9c11029bb41caab5576f354fbf808a5e91325bb0.tar.bz2
bpo-37587: json: Use _PyUnicodeWriter when scanning string. (GH-15591)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-08-29-18-48-48.bpo-37587.N7TGTC.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-08-29-18-48-48.bpo-37587.N7TGTC.rst b/Misc/NEWS.d/next/Library/2019-08-29-18-48-48.bpo-37587.N7TGTC.rst
new file mode 100644
index 0000000..92bebee
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-08-29-18-48-48.bpo-37587.N7TGTC.rst
@@ -0,0 +1,2 @@
+``_json.scanstring`` is now up to 3x faster when there are many backslash
+escaped characters in the JSON string.