diff options
author | Irit Katriel <1055913+iritkatriel@users.noreply.github.com> | 2023-04-11 08:38:37 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 08:38:37 (GMT) |
commit | 78b763f63032a7185c0905c319ead9e9b35787b6 (patch) | |
tree | 065fe97b6d301d4ad35303f4bd5a347f9ecba9c7 /Misc/NEWS.d | |
parent | 8026cda10ccd3cbc7f7ff84dc6970266512961e4 (diff) | |
download | cpython-78b763f63032a7185c0905c319ead9e9b35787b6.zip cpython-78b763f63032a7185c0905c319ead9e9b35787b6.tar.gz cpython-78b763f63032a7185c0905c319ead9e9b35787b6.tar.bz2 |
gh-103176: sys._current_exceptions() returns mapping to exception instances instead of exc_info tuples (#103177)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-04-01-23-01-31.gh-issue-103176.FBsdxa.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-04-01-23-01-31.gh-issue-103176.FBsdxa.rst b/Misc/NEWS.d/next/Library/2023-04-01-23-01-31.gh-issue-103176.FBsdxa.rst new file mode 100644 index 0000000..b89f9ba --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-04-01-23-01-31.gh-issue-103176.FBsdxa.rst @@ -0,0 +1,2 @@ +:func:`sys._current_exceptions` now returns a mapping from thread-id to an +exception instance, rather than to a ``(typ, exc, tb)`` tuple. |