gh-101578: mention in what's new in 3.12 that exceptions are now normalized before stored (#102702)

This commit is contained in:
Irit Katriel 2023-03-14 22:38:15 +00:00 committed by GitHub
parent a028778d4c
commit 152292b98f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -982,6 +982,11 @@ Porting to Python 3.12
effects, these side effects are no longer duplicated.
(Contributed by Victor Stinner in :gh:`98724`.)
* The interpreter's error indicator is now always normalized. This means
that :c:func:`PyErr_SetObject`, :c:func:`PyErr_SetString` and the other
functions that set the error indicator now normalize the exception
before storing it. (Contributed by Mark Shannon in :gh:`101578`.)
Deprecated
----------