diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-02-01 22:53:53 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-02-01 22:53:53 (GMT) |
commit | e3bfe19358f9d6747676fcdb9af415972d276671 (patch) | |
tree | 5af2f199c00afdfc3c1ebc3c9f4fb10dbc2f68c3 /Misc | |
parent | 4dbc30500218204eace01fa4d429f3087df5376f (diff) | |
download | cpython-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/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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? =========================== |