diff options
author | Antoine Pitrou <pitrou@free.fr> | 2017-06-12 13:28:19 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-12 13:28:19 (GMT) |
commit | dfd5f34634f9c505945e9348b4b799544680a7cf (patch) | |
tree | 153e7ebd65c9c0777ca8a5e8758d3b54783478c4 /Misc/NEWS | |
parent | ced36a993fcfd1c76637119d31c03156a8772e11 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |