
python-checkins at python
May 1, 2012, 5:01 PM
Post #1 of 1
(48 views)
Permalink
|
|
cpython (3.2): fix windows test failure - issue13183
|
|
http://hg.python.org/cpython/rev/d17ecee3f752 changeset: 76709:d17ecee3f752 branch: 3.2 parent: 76696:eab5120cc208 user: Senthil Kumaran <senthil [at] uthcode> date: Wed May 02 08:00:22 2012 +0800 summary: fix windows test failure - issue13183 files: Lib/test/test_pdb.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -653,7 +653,7 @@ """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar)) -- Repository URL: http://hg.python.org/cpython
|