summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-09-30 03:02:15 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-09-30 03:02:15 (GMT)
commit736b8012b42be24dd26b57bd443a576cc37c116c (patch)
tree643d472cfd4a079ce9fd1fe86ac80198a1fafbcb /Misc
parentbbd0a323aeb1222d216fa10a9e1d9c91945ad1e6 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 890c251..1c2393c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.