From f765b5c4fa6b41de214b243daa6dd3ad6356dfe2 Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Tue, 12 Feb 2019 09:42:43 -0700 Subject: Drop -tt flag in runtest.py Test runs launch Python with the -tt flag to error on inconsistent tab usage. That flag is no longer part of Python 3, though it is silently accepted and ignored in cpython. In PyPy3, it errors. We have other ways to detect such things now anyway, so just drop. Signed-off-by: Mats Wichmann --- runtest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtest.py b/runtest.py index 9ffe374..eecf19d 100755 --- a/runtest.py +++ b/runtest.py @@ -797,7 +797,7 @@ tests_failing = 0 def run_test(t, io_lock, run_async=True): global tests_completed, tests_passing, tests_failing header = "" - command_args = ['-tt'] + command_args = [] if debug: command_args.append(debug) command_args.append(t.path) -- cgit v0.12