diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-10-15 15:47:36 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-10-15 15:47:36 (GMT) |
commit | e1bd38c03c16cd27227b3148d2be0ef1ab678448 (patch) | |
tree | 6ca661c659881b0785ed35ed82bdb9e1d07c6831 /Misc/NEWS | |
parent | 77a75b3db1b3c63833067f6864e62dcf312ded05 (diff) | |
download | cpython-e1bd38c03c16cd27227b3148d2be0ef1ab678448.zip cpython-e1bd38c03c16cd27227b3148d2be0ef1ab678448.tar.gz cpython-e1bd38c03c16cd27227b3148d2be0ef1ab678448.tar.bz2 |
fix integer overflow in unicode case operations (closes #22643)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.6? Core and Builtins ----------------- +- Issue #22643: Fix integer overflow in Unicode case operations (upper, lower, + title, swapcase, casefold). + - Issue #22518: Fixed integer overflow issues in "backslashreplace", "xmlcharrefreplace", and "surrogatepass" error handlers. |