diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 4ab3d4d911c..5c1a37c280a 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -57,7 +57,7 @@ class PdbTestCase(unittest.TestCase): """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar))