From: Serhiy Storchaka Date: Thu, 21 Dec 2023 18:12:07 +0000 (+0200) Subject: gh-113325: Remove a debugging print accidentally left in test_symtable (GH-113368) X-Git-Tag: v3.13.0a3~301 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5f7a80fd02158d9c655eff4202498f5cab9b2ca4;p=thirdparty%2FPython%2Fcpython.git gh-113325: Remove a debugging print accidentally left in test_symtable (GH-113368) --- diff --git a/Lib/test/test_symtable.py b/Lib/test/test_symtable.py index 987e9e32afc3..92b78a8086a8 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 '':", lines)