summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pdb.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-02 00:01:02 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-02 00:01:02 (GMT)
commitbf6c19598a0ebed17cd354f5cfc261681b6b1276 (patch)
tree48eed8a298707341f20bda541945a537c747fcd3 /Lib/test/test_pdb.py
parente6abb488c950f0f69999a30c72871cd289e8be2d (diff)
parentcb172041d356b1a61588b8176985303c7a7d2c98 (diff)
downloadcpython-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.py2
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))