summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNice Zombies <nineteendo19d0@gmail.com>2024-10-18 12:26:29 (GMT)
committerGitHub <noreply@github.com>2024-10-18 12:26:29 (GMT)
commitd358425e6968858e52908794d15f37e62abc74ec (patch)
tree309384b237287d58261ea7f7d5b0a054b35afc24 /Misc/NEWS.d
parenta0f5c8e6272a1fd5422892d773923b138e77ae5f (diff)
downloadcpython-d358425e6968858e52908794d15f37e62abc74ec.zip
cpython-d358425e6968858e52908794d15f37e62abc74ec.tar.gz
cpython-d358425e6968858e52908794d15f37e62abc74ec.tar.bz2
gh-125682: Reject non-ASCII digits in the Python implementation of JSON decoder (GH-125687)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-10-18-09-51-29.gh-issue-125682.vsj4cU.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-10-18-09-51-29.gh-issue-125682.vsj4cU.rst b/Misc/NEWS.d/next/Library/2024-10-18-09-51-29.gh-issue-125682.vsj4cU.rst
new file mode 100644
index 0000000..3eb2905
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-10-18-09-51-29.gh-issue-125682.vsj4cU.rst
@@ -0,0 +1,2 @@
+Reject non-ASCII digits in the Python implementation of :func:`json.loads`
+conforming to the JSON specification.