Remove debugging output

This commit is contained in:
Antoine Pitrou 2014-05-11 17:29:57 +02:00
parent bb62c18ec9
commit 4f23472fc2

View 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()