aboutsummaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorChristian Tismer <tismer@stackless.com>2020-11-07 13:20:38 +0100
committerChristian Tismer <tismer@stackless.com>2020-11-09 08:10:06 +0000
commitc9cefb4ab7f93a64fc1f34a71745f697e0a46e44 (patch)
treedaf3e658a2a1e1eb4078f983187525b951fa0d04 /testing
parentd72f0e35f22f3f9460d12e40f8f5676bf5a7f0d1 (diff)
python3: remove all obsolete "from __future__" import statements
Note that not all future statements can be removed: PEP 563 for instance deals with from __future__ import annotations Task-number: PYSIDE-904 Change-Id: Ia387ec87f3c68ca64d13e8e80191eda900f58638 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Diffstat (limited to 'testing')
-rw-r--r--testing/runner.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/testing/runner.py b/testing/runner.py
index 0bc04de81..09b873d26 100644
--- a/testing/runner.py
+++ b/testing/runner.py
@@ -198,7 +198,6 @@ class TestRunner(object):
labelled = True
tee_src = dedent("""\
- from __future__ import print_function
import sys
{}
py_tee(sys.stdin, sys.stdout, '{label}')