summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-10-04 11:17:50 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-10-04 11:17:50 (GMT)
commit8d1e18ef1fe692f3b222b45e0f47236f65bbe24a (patch)
tree8c7627299f8c82b7affd6202f2ca727bf74682e6 /Misc
parent90c24c42b2dc912c5b6b2e34d1d4a03a9a7de915 (diff)
parent2e374098ff791c81576ff2ba2961dc5011a693bf (diff)
downloadcpython-8d1e18ef1fe692f3b222b45e0f47236f65bbe24a.zip
cpython-8d1e18ef1fe692f3b222b45e0f47236f65bbe24a.tar.gz
cpython-8d1e18ef1fe692f3b222b45e0f47236f65bbe24a.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 b24e28d..6decc60 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #22518: Fixed integer overflow issues in "backslashreplace",
+ "xmlcharrefreplace", and "surrogatepass" error handlers.
+
- Issue #22540: speed up `PyObject_IsInstance` and `PyObject_IsSubclass` in the
common case that the second argument has metaclass `type`.