
python-checkins at python
May 1, 2012, 5:01 PM
Post #1 of 1
(42 views)
Permalink
|
|
cpython (2.7): fix windows test failure - issue13183
|
|
http://hg.python.org/cpython/rev/3b2aa777b725 changeset: 76708:3b2aa777b725 branch: 2.7 parent: 76699:6ff4440b5fa2 user: Senthil Kumaran <senthil [at] uthcode> date: Wed May 02 07:59:36 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 @@ -57,7 +57,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
|