diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-05-02 08:00:22 +0800 |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-05-02 08:00:22 +0800 |
commit | cb172041d356b1a61588b8176985303c7a7d2c98 (patch) | |
tree | 0110eef8939f9654e79bb28f5b36244189051a8d /Lib/test | |
parent | 7295c6a871f9cc42a4209a8eebe2e0974194a2a3 (diff) | |
download | cpython-git-cb172041d356b1a61588b8176985303c7a7d2c98.tar.gz |
fix windows test failure - issue13183
Diffstat (limited to 'Lib/test')
-rw-r--r-- | 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 index f34b3c25ff..253fcaf36c 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)) |