summaryrefslogtreecommitdiffstats
path: root/Lib/test/libregrtest/runtest_mp.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-09-30 00:39:22 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-09-30 00:39:22 (GMT)
commitb40843546b1dc558da7217f8c0fe72fbca38e797 (patch)
treef4547c7ed2cd4b1c40c105cb70dca0a940cda12a /Lib/test/libregrtest/runtest_mp.py
parent6f20a2e01ffe897c20d0085f63371c467d118dac (diff)
downloadcpython-b40843546b1dc558da7217f8c0fe72fbca38e797.zip
cpython-b40843546b1dc558da7217f8c0fe72fbca38e797.tar.gz
cpython-b40843546b1dc558da7217f8c0fe72fbca38e797.tar.bz2
Issue #25220, libregrtest: Cleanup
No need to support.verbose in Regrtest.run_tests(), it's always set in runtest().
Diffstat (limited to 'Lib/test/libregrtest/runtest_mp.py')
-rw-r--r--Lib/test/libregrtest/runtest_mp.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/libregrtest/runtest_mp.py b/Lib/test/libregrtest/runtest_mp.py
index df075c1..6ed8dc2 100644
--- a/Lib/test/libregrtest/runtest_mp.py
+++ b/Lib/test/libregrtest/runtest_mp.py
@@ -68,6 +68,7 @@ def run_tests_slave(slaveargs):
except BaseException as e:
traceback.print_exc()
result = CHILD_ERROR, str(e)
+
print() # Force a newline (just in case)
print(json.dumps(result), flush=True)
sys.exit(0)