From: Antoine Pitrou Date: Sun, 11 May 2014 15:29:57 +0000 (+0200) Subject: Remove debugging output X-Git-Tag: v3.5.0a1~1690 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f23472fc2afb1aa2656a96b0d00c3091ecf4260;p=thirdparty%2FPython%2Fcpython.git Remove debugging output --- diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 9a71fdb5ad33..88a9e2bbb523 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -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()