summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-06-12 13:28:19 (GMT)
committerGitHub <noreply@github.com>2017-06-12 13:28:19 (GMT)
commitdfd5f34634f9c505945e9348b4b799544680a7cf (patch)
tree153e7ebd65c9c0777ca8a5e8758d3b54783478c4 /Misc/NEWS
parentced36a993fcfd1c76637119d31c03156a8772e11 (diff)
downloadcpython-dfd5f34634f9c505945e9348b4b799544680a7cf.zip
cpython-dfd5f34634f9c505945e9348b4b799544680a7cf.tar.gz
cpython-dfd5f34634f9c505945e9348b4b799544680a7cf.tar.bz2
Fix bpo-30589: improve Process.exitcode with forkserver (#1989)
* Fix bpo-30589: improve Process.exitcode with forkserver When the child is killed, Process.exitcode should return -signum, not 255. * Add Misc/NEWS
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 88f1631..491cad3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -362,6 +362,10 @@ Extension Modules
Library
-------
+- bpo-30589: Fix multiprocessing.Process.exitcode to return the opposite
+ of the signal number when the process is killed by a signal (instead
+ of 255) when using the "forkserver" method.
+
- bpo-28994: The traceback no longer displayed for SystemExit raised in
a callback registered by atexit.