]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Issue #13854: Properly handle non-integer, non-string arg to SystemExit
authorRichard Oudkerk <shibturn@gmail.com>
Wed, 6 Jun 2012 18:01:14 +0000 (19:01 +0100)
committerRichard Oudkerk <shibturn@gmail.com>
Wed, 6 Jun 2012 18:01:14 +0000 (19:01 +0100)
commit2182e0578c21d9a89cb507300b5f2c5319dced93
tree3f17161c79bc624a346e80c1ce5efcc7ccbfbc89
parentd44a4a27a6968558c3a78dbf2578ac7dcbd2ee08
Issue #13854: Properly handle non-integer, non-string arg to SystemExit

Previously multiprocessing only expected int or str.  It also wrongly
used an exit code of 1 when the argument was a string instead of zero.
Lib/multiprocessing/process.py
Lib/test/test_multiprocessing.py
Misc/NEWS