]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove debugging output
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 11 May 2014 15:29:57 +0000 (17:29 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 11 May 2014 15:29:57 +0000 (17:29 +0200)
Lib/test/test_cmd_line_script.py

index 9a71fdb5ad33196c0643b4542fed29da1187818b..88a9e2bbb523baa687d0ea26cf5d3fda0bb6a90b 100644 (file)
@@ -187,9 +187,6 @@ class CmdLineTest(unittest.TestCase):
             # Drain stderr until prompt
             while True:
                 data = stderr.read(4)
-                if support.verbose:
-                    print("repl stderr[:4]:", repr(data), file=sys.__stdout__)
-                    sys.__stdout__.flush()
                 if data == b">>> ":
                     break
                 stderr.readline()