diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-10-04 11:17:50 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-10-04 11:17:50 (GMT) |
commit | 8d1e18ef1fe692f3b222b45e0f47236f65bbe24a (patch) | |
tree | 8c7627299f8c82b7affd6202f2ca727bf74682e6 /Misc | |
parent | 90c24c42b2dc912c5b6b2e34d1d4a03a9a7de915 (diff) | |
parent | 2e374098ff791c81576ff2ba2961dc5011a693bf (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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`. |