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)
commit4b1681832b8d16fefc73917b5fddff46e5f4c447 (patch)
tree22b6beec1b90ee6c222fdd820035f61de153b33a /Misc
parent76e73f85a3a9d7d4210f45ac020c5e5ce5323d80 (diff)
downloadcpython-4b1681832b8d16fefc73917b5fddff46e5f4c447.zip
cpython-4b1681832b8d16fefc73917b5fddff46e5f4c447.tar.gz
cpython-4b1681832b8d16fefc73917b5fddff46e5f4c447.tar.bz2
Issue #22518: Fixed integer overflow issues in "backslashreplace",v3.3.6rc1
"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 c0046ce..8fbf58b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.6?
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.