10000 bpo-45711: Change exc_info related APIs to derive type and traceback from the exception instance by iritkatriel · Pull Request #29780 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content
8000

bpo-45711: Change exc_info related APIs to derive type and traceback from the exception instance #29780

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Nov 30, 2021
Prev Previous commit
Merge remote-tracking branch 'upstream/main' into 45711-change-apis
  • Loading branch information
iritkatriel committed Nov 30, 2021
commit f17222d032cd897f9b237e1b52dd7d7036626cd1
8 changes: 8 additions & 0 deletions Doc/whatsnew/3.11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,13 @@ sqlite3
threading mode the underlying SQLite library has been compiled with.
(Contributed by Erlend E. Aasland in :issue:`45613`.)

* :mod:`sqlite3` C callbacks now use unraisable exceptions if callback
tracebacks are enabled. Users can now register an
:func:`unraisable hook handler <sys.unraisablehook>` to improve their debug
experience.
(Contributed by Erlend E. Aasland in :issue:`45828`.)


sys
---

Expand All @@ -274,6 +281,7 @@ sys
the results of subsequent calls to :func:`exc_info`.
(Contributed by Irit Katriel in :issue:`45711`.)


threading
---------

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0