From: Stefan Behnel Date: Sun, 5 Dec 2010 09:35:00 +0000 (+0100) Subject: Py3 fix in test runner X-Git-Tag: 0.14.alpha0~6^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0adf38e02eccb6bebebcc3a329c077cefba52664;p=cython.git Py3 fix in test runner --- diff --git a/runtests.py b/runtests.py index 8a2b9cd1..5f798757 100644 --- a/runtests.py +++ b/runtests.py @@ -743,9 +743,9 @@ class EndToEndTest(unittest.TestCase): out, err = p.communicate() res = p.returncode if res != 0: - print command - print out - print err + print(command) + print(out) + print(err) else: res = os.system(command) self.assertEqual(0, res, "non-zero exit status")