summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-04 14:15:49 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-04 14:15:49 +0300
commit2e374098ff791c81576ff2ba2961dc5011a693bf (patch)
treed959477354c67d9201b47629ce5cd8dd25f66120 /Misc
parent518e71b18a008947b17369de5c06d9543db7dfc5 (diff)
downloadcpython-git-2e374098ff791c81576ff2ba2961dc5011a693bf.tar.gz
Issue #22518: Fixed integer overflow issues in "backslashreplace",
"xmlcharrefreplace", and "surrogatepass" error handlers.
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 671cc50270..a33c4acd16 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -9,6 +9,9 @@ What's New in Python 3.4.3?
Core and Builtins
-----------------
+- Issue #22518: Fixed integer overflow issues in "backslashreplace",
+ "xmlcharrefreplace", and "surrogatepass" error handlers.
+
- Issue #22520: Fix overflow checking when generating the repr of a unicode
object.