diff options
| author | Antoine Pitrou <solipsis@pitrou.net> | 2014-05-11 14:24:45 (GMT) |
|---|---|---|
| committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-05-11 14:24:45 (GMT) |
| commit | c1b22d9c22f7fc4f0b3b0801556c92fe5849626a (patch) | |
| tree | 9075b8ae480b2c87239bb974e36f57abcd292010 /Lib/test/test_cmd_line_script.py | |
| parent | 0a44a0b82717b5d9188f937ffbf4746adeea9c5a (diff) | |
| download | cpython-c1b22d9c22f7fc4f0b3b0801556c92fe5849626a.zip cpython-c1b22d9c22f7fc4f0b3b0801556c92fe5849626a.tar.gz cpython-c1b22d9c22f7fc4f0b3b0801556c92fe5849626a.tar.bz2 | |
Fix debugging output to work with -bb
Diffstat (limited to 'Lib/test/test_cmd_line_script.py')
| -rw-r--r-- | Lib/test/test_cmd_line_script.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_cmd_line_script.py b/Lib/test/test_cmd_line_script.py index 60271f4..5b6073e 100644 --- a/Lib/test/test_cmd_line_script.py +++ b/Lib/test/test_cmd_line_script.py @@ -188,7 +188,7 @@ class CmdLineTest(unittest.TestCase): while True: data = stderr.read(4) if support.verbose: - print("repl stderr[:4]:", data) + print("repl stderr[:4]:", repr(data)) sys.stdout.flush() if data == b">>> ": break |
