From a9e18cdd7f3de14c49fea7785a4f632f0c097fe4 Mon Sep 17 00:00:00 2001 From: Senthil Kumaran Date: Wed, 2 May 2012 07:59:36 +0800 Subject: [PATCH] fix windows test failure - issue13183 --- Lib/test/test_pdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))