summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-04 11:15:49 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-04 11:15:49 (GMT)
commit2e374098ff791c81576ff2ba2961dc5011a693bf (patch)
treed959477354c67d9201b47629ce5cd8dd25f66120 /Misc
parent518e71b18a008947b17369de5c06d9543db7dfc5 (diff)
downloadcpython-2e374098ff791c81576ff2ba2961dc5011a693bf.zip
cpython-2e374098ff791c81576ff2ba2961dc5011a693bf.tar.gz
cpython-2e374098ff791c81576ff2ba2961dc5011a693bf.tar.bz2
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 671cc50..a33c4ac 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.