diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-09-30 03:02:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-09-30 03:02:15 (GMT) |
commit | 736b8012b42be24dd26b57bd443a576cc37c116c (patch) | |
tree | 643d472cfd4a079ce9fd1fe86ac80198a1fafbcb /Misc | |
parent | bbd0a323aeb1222d216fa10a9e1d9c91945ad1e6 (diff) | |
download | cpython-736b8012b42be24dd26b57bd443a576cc37c116c.zip cpython-736b8012b42be24dd26b57bd443a576cc37c116c.tar.gz cpython-736b8012b42be24dd26b57bd443a576cc37c116c.tar.bz2 |
prevent overflow in unicode_repr (closes #22520)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.6 release candidate 1? Core and Builtins ----------------- +- Issue #22520: Fix overflow checking when generating the repr of a unicode + object. + - Issue #22519: Fix overflow checking in PyBytes_Repr. - Issue #22518: Fix integer overflow issues in latin-1 encoding. |