Core and Builtins
-----------------
-- Issue #19529: Fix a potential crash in converting Unicode objects to wchar_t
- when Py_UNICODE is 4 bytes but wchar_t is 2 bytes, for example on AIX.
-
+- 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.
+
+- Issue #22520: Fix overflow checking when generating the repr of a unicode
+ object.
+
+- Issue #22519: Fix overflow checking in PyBytes_Repr.
+
+- Issue #22518: Fix integer overflow issues in latin-1 encoding.
+
+ - Issue #23165: Perform overflow checks before allocating memory in the
+ _Py_char2wchar function.
+
Library
-------