diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-10-04 14:15:49 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-10-04 14:15:49 +0300 |
commit | 2e374098ff791c81576ff2ba2961dc5011a693bf (patch) | |
tree | d959477354c67d9201b47629ce5cd8dd25f66120 /Misc | |
parent | 518e71b18a008947b17369de5c06d9543db7dfc5 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |