summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-06-12 05:25:04 (GMT)
committerGitHub <noreply@github.com>2017-06-12 05:25:04 (GMT)
commit3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4 (patch)
treea36010810577629101ec074cf56a5c9d307acda3 /Misc/NEWS
parent1dbce04d0e3e93b715eb0d8024da396361759d16 (diff)
downloadcpython-3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4.zip
cpython-3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4.tar.gz
cpython-3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4.tar.bz2
bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (#2034)
The traceback no longer displayed for SystemExit raised in a callback registered by atexit.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9f76986..98d8ef9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -359,6 +359,9 @@ Extension Modules
Library
-------
+- bpo-28994: The traceback no longer displayed for SystemExit raised in
+ a callback registered by atexit.
+
- bpo-30508: Don't log exceptions if Task/Future "cancel()" method was
called.