summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorIrit Katriel <1055913+iritkatriel@users.noreply.github.com>2023-04-11 08:38:37 (GMT)
committerGitHub <noreply@github.com>2023-04-11 08:38:37 (GMT)
commit78b763f63032a7185c0905c319ead9e9b35787b6 (patch)
tree065fe97b6d301d4ad35303f4bd5a347f9ecba9c7 /Misc/NEWS.d
parent8026cda10ccd3cbc7f7ff84dc6970266512961e4 (diff)
downloadcpython-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.rst2
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.