diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 09:53:35 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-01-27 09:53:35 (GMT) |
commit | 2d843d25204af3a791f31b1b941675da49be82ed (patch) | |
tree | 8726d48e8a575217c26ea4a0a5ceaf19d9bd70b5 /Lib/multiprocessing/forking.py | |
parent | e10ae8871a057d6afb5a4c5650e0ed029f13721d (diff) | |
parent | 84a0fbf6b0c2d196ae3995697acf596094b94eb8 (diff) | |
download | cpython-2d843d25204af3a791f31b1b941675da49be82ed.zip cpython-2d843d25204af3a791f31b1b941675da49be82ed.tar.gz cpython-2d843d25204af3a791f31b1b941675da49be82ed.tar.bz2 |
Issue #13812: When a multiprocessing Process child raises an exception, flush stderr after printing the exception traceback.
Diffstat (limited to 'Lib/multiprocessing/forking.py')
-rw-r--r-- | Lib/multiprocessing/forking.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/multiprocessing/forking.py b/Lib/multiprocessing/forking.py index 47746cb..b7de567 100644 --- a/Lib/multiprocessing/forking.py +++ b/Lib/multiprocessing/forking.py @@ -129,8 +129,6 @@ if sys.platform != 'win32': import random random.seed() code = process_obj._bootstrap() - sys.stdout.flush() - sys.stderr.flush() os._exit(code) # `w` will be closed when the child exits, at which point `r` |