diff options
| author | Senthil Kumaran <senthil@uthcode.com> | 2012-05-01 23:59:36 (GMT) |
|---|---|---|
| committer | Senthil Kumaran <senthil@uthcode.com> | 2012-05-01 23:59:36 (GMT) |
| commit | a9e18cdd7f3de14c49fea7785a4f632f0c097fe4 (patch) | |
| tree | 20c0b0454b6d2df650b9bf644ee68924397d06be /Lib/test | |
| parent | f3ad1f94a8d5b528d121485399adc4f50f7c2162 (diff) | |
| download | cpython-a9e18cdd7f3de14c49fea7785a4f632f0c097fe4.zip cpython-a9e18cdd7f3de14c49fea7785a4f632f0c097fe4.tar.gz cpython-a9e18cdd7f3de14c49fea7785a4f632f0c097fe4.tar.bz2 | |
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 4ab3d4d..5c1a37c 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -57,7 +57,7 @@ class PdbTestCase(unittest.TestCase): """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar)) |
