diff options
author | Christopher Hunt <chrahunt@gmail.com> | 2020-02-21 09:33:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-21 09:33:04 (GMT) |
commit | c2ac4cf040ea950bf552d1e77bea613a1a5474fe (patch) | |
tree | 00d33e24b2e69458a109f64e66bd1b619bb219f5 /Misc | |
parent | baf29b221682be0f4fde53a05ea3f57c3c79f431 (diff) | |
download | cpython-c2ac4cf040ea950bf552d1e77bea613a1a5474fe.zip cpython-c2ac4cf040ea950bf552d1e77bea613a1a5474fe.tar.gz cpython-c2ac4cf040ea950bf552d1e77bea613a1a5474fe.tar.bz2 |
bpo-35727: Use exit code 0 on sys.exit() in multiprocessing.Process. (GH-11538)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-01-12-20-39-34.bpo-35727.FWrbHn.rst | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -746,6 +746,7 @@ Lawrence Hudson Michael Hudson Jim Hugunin Greg Humphreys +Chris Hunt Eric Huss Nehal Hussain Taihyun Hwang diff --git a/Misc/NEWS.d/next/Library/2019-01-12-20-39-34.bpo-35727.FWrbHn.rst b/Misc/NEWS.d/next/Library/2019-01-12-20-39-34.bpo-35727.FWrbHn.rst new file mode 100644 index 0000000..9f3fa40 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-01-12-20-39-34.bpo-35727.FWrbHn.rst @@ -0,0 +1 @@ +Fix sys.exit() and sys.exit(None) exit code propagation when used in multiprocessing.Process.
\ No newline at end of file |