summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-02 00:00:22 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-02 00:00:22 (GMT)
commitcb172041d356b1a61588b8176985303c7a7d2c98 (patch)
tree0110eef8939f9654e79bb28f5b36244189051a8d /Lib
parent7295c6a871f9cc42a4209a8eebe2e0974194a2a3 (diff)
downloadcpython-cb172041d356b1a61588b8176985303c7a7d2c98.zip
cpython-cb172041d356b1a61588b8176985303c7a7d2c98.tar.gz
cpython-cb172041d356b1a61588b8176985303c7a7d2c98.tar.bz2
fix windows test failure - issue13183
Diffstat (limited to 'Lib')
-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 f34b3c2..253fcaf 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))