summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-02-01 22:53:53 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-02-01 22:53:53 (GMT)
commite3bfe19358f9d6747676fcdb9af415972d276671 (patch)
tree5af2f199c00afdfc3c1ebc3c9f4fb10dbc2f68c3 /Misc
parent4dbc30500218204eace01fa4d429f3087df5376f (diff)
downloadcpython-e3bfe19358f9d6747676fcdb9af415972d276671.zip
cpython-e3bfe19358f9d6747676fcdb9af415972d276671.tar.gz
cpython-e3bfe19358f9d6747676fcdb9af415972d276671.tar.bz2
fix possible overflow in encode_basestring_ascii (closes #23369)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b203462..b69955a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,12 @@ Core and Builtins
- Issue #23055: Fixed a buffer overflow in PyUnicode_FromFormatV. Analysis
and fix by Guido Vranken.
+Library
+-------
+
+- Issue #23369: Fixed possible integer overflow in
+ _json.encode_basestring_ascii.
+
What's New in Python 3.3.6?
===========================