diff options
| author | Serhiy Storchaka <storchaka@gmail.com> | 2023-12-21 18:12:07 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-21 18:12:07 (GMT) |
| commit | 5f7a80fd02158d9c655eff4202498f5cab9b2ca4 (patch) | |
| tree | 85d3e6fa696bef6fdf02dbae747677105d857426 | |
| parent | df1eec3dae3b1eddff819fd70f58b03b3fbd0eda (diff) | |
| download | cpython-5f7a80fd02158d9c655eff4202498f5cab9b2ca4.zip cpython-5f7a80fd02158d9c655eff4202498f5cab9b2ca4.tar.gz cpython-5f7a80fd02158d9c655eff4202498f5cab9b2ca4.tar.bz2 | |
gh-113325: Remove a debugging print accidentally left in test_symtable (GH-113368)
| -rw-r--r-- | Lib/test/test_symtable.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_symtable.py b/Lib/test/test_symtable.py index 987e9e3..92b78a8 100644 --- a/Lib/test/test_symtable.py +++ b/Lib/test/test_symtable.py @@ -337,7 +337,6 @@ class CommandLineTest(unittest.TestCase): symtable.main(['-']) self.assertEqual(stdout.getvalue(), out) lines = out.splitlines() - print(out) self.assertIn("symbol table for module from file '<stdin>':", lines) |
