diff options
author | Victor Stinner <vstinner@python.org> | 2023-08-29 16:04:07 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 16:04:07 (GMT) |
commit | 83e191ba7627cbcb06cebcc0a020b847f271ca59 (patch) | |
tree | 8da04912720e6b37cb051d8e9690b9201b80634e | |
parent | b62a76043e543fbb15cab7e9e8874a798bc600d2 (diff) | |
download | cpython-83e191ba7627cbcb06cebcc0a020b847f271ca59.zip cpython-83e191ba7627cbcb06cebcc0a020b847f271ca59.tar.gz cpython-83e191ba7627cbcb06cebcc0a020b847f271ca59.tar.bz2 |
test_sys: remove debug print() (#108642)
-rw-r--r-- | Lib/test/test_sys.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_sys.py b/Lib/test/test_sys.py index 9dce15e..f3608ce 100644 --- a/Lib/test/test_sys.py +++ b/Lib/test/test_sys.py @@ -732,7 +732,6 @@ class SysModuleTest(unittest.TestCase): s = '__init__' t = sys.intern(s) - print('------------------------') interp = interpreters.create() interp.run(textwrap.dedent(f''' import sys |