summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-06-12 06:02:13 (GMT)
committerGitHub <noreply@github.com>2017-06-12 06:02:13 (GMT)
commitd89dc844d288ee2e403272f3e4552eed6911cafd (patch)
tree0c69c1ce14194048e402a844113068a857f45e49 /Misc/NEWS
parent47c9decb5feabb51416deffd2098ee31d73f1f5f (diff)
downloadcpython-d89dc844d288ee2e403272f3e4552eed6911cafd.zip
cpython-d89dc844d288ee2e403272f3e4552eed6911cafd.tar.gz
cpython-d89dc844d288ee2e403272f3e4552eed6911cafd.tar.bz2
[3.6] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) (#2121)
The traceback no longer displayed for SystemExit raised in a callback registered by atexit.. (cherry picked from commit 3fd54d4a7e604067e2bc0f8cfd58bdbdc09fa7f4)
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 be2ec4f..e56c5a3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -49,6 +49,9 @@ Core and Builtins
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.