summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-06-12 06:02:33 (GMT)
committerGitHub <noreply@github.com>2017-06-12 06:02:33 (GMT)
commit7d8c1ebd86ce27b28736c5e97fef58ec60b8ef31 (patch)
tree663cc5d9bdb3a56bb51f9e1dd12e3ad9e1c08da5 /Misc/NEWS
parent7563b0508172cedb5e6a95d05e9122f1a0bfcd86 (diff)
downloadcpython-7d8c1ebd86ce27b28736c5e97fef58ec60b8ef31.zip
cpython-7d8c1ebd86ce27b28736c5e97fef58ec60b8ef31.tar.gz
cpython-7d8c1ebd86ce27b28736c5e97fef58ec60b8ef31.tar.bz2
[3.5] bpo-28994: Fixed errors handling in atexit._run_exitfuncs(). (GH-2034) (#2122)
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 255f146..c4c21e5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -56,6 +56,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.