From: Senthil Kumaran Date: Tue, 1 May 2012 23:59:36 +0000 (+0800) Subject: fix windows test failure - issue13183 X-Git-Tag: v2.7.4rc1~858 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a9e18cdd7f3de14c49fea7785a4f632f0c097fe4;p=python fix windows test failure - issue13183 --- diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 4ab3d4d911..5c1a37c280 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))