diff options
author | Senthil Kumaran <senthil@uthcode.com> | 2012-05-02 00:01:02 (GMT) |
---|---|---|
committer | Senthil Kumaran <senthil@uthcode.com> | 2012-05-02 00:01:02 (GMT) |
commit | bf6c19598a0ebed17cd354f5cfc261681b6b1276 (patch) | |
tree | 48eed8a298707341f20bda541945a537c747fcd3 /Lib/test/test_pdb.py | |
parent | e6abb488c950f0f69999a30c72871cd289e8be2d (diff) | |
parent | cb172041d356b1a61588b8176985303c7a7d2c98 (diff) | |
download | cpython-bf6c19598a0ebed17cd354f5cfc261681b6b1276.zip cpython-bf6c19598a0ebed17cd354f5cfc261681b6b1276.tar.gz cpython-bf6c19598a0ebed17cd354f5cfc261681b6b1276.tar.bz2 |
fix closes issue13183 - windows test failure
Diffstat (limited to 'Lib/test/test_pdb.py')
-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 fc23e14..dd55863 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -658,7 +658,7 @@ class PdbTestCase(unittest.TestCase): """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar)) |