From: Senthil Kumaran Date: Wed, 2 May 2012 00:00:22 +0000 (+0800) Subject: fix windows test failure - issue13183 X-Git-Tag: v3.3.0a4~315^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cb172041d356b1a61588b8176985303c7a7d2c98;p=thirdparty%2FPython%2Fcpython.git fix windows test failure - issue13183 --- diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index f34b3c25ffca..253fcaf36c8f 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -653,7 +653,7 @@ class PdbTestCase(unittest.TestCase): """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar))