(original) (raw)

changeset: 76708:3b2aa777b725 branch: 2.7 parent: 76699:6ff4440b5fa2 user: Senthil Kumaran senthil@uthcode.com date: Wed May 02 07:59:36 2012 +0800 files: Lib/test/test_pdb.py description: fix windows test failure - issue13183 diff -r 6ff4440b5fa2 -r 3b2aa777b725 Lib/test/test_pdb.py --- a/Lib/test/test_pdb.py Tue May 01 10:16:33 2012 -0400 +++ b/Lib/test/test_pdb.py Wed May 02 07:59:36 2012 +0800 @@ -57,7 +57,7 @@ """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar)) /senthil@uthcode.com