(original) (raw)

changeset: 76710:0269c592c8b1 parent: 76707:359b1a6a3836 parent: 76709:d17ecee3f752 user: Senthil Kumaran senthil@uthcode.com date: Wed May 02 08:01:02 2012 +0800 files: Lib/test/test_pdb.py description: fix closes issue13183 - windows test failure diff -r 359b1a6a3836 -r 0269c592c8b1 Lib/test/test_pdb.py --- a/Lib/test/test_pdb.py Wed May 02 01:15:40 2012 +0200 +++ b/Lib/test/test_pdb.py Wed May 02 08:01:02 2012 +0800 @@ -658,7 +658,7 @@ """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar)) /senthil@uthcode.com