summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2012-05-01 23:59:36 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2012-05-01 23:59:36 (GMT)
commita9e18cdd7f3de14c49fea7785a4f632f0c097fe4 (patch)
tree20c0b0454b6d2df650b9bf644ee68924397d06be
parentf3ad1f94a8d5b528d121485399adc4f50f7c2162 (diff)
downloadcpython-a9e18cdd7f3de14c49fea7785a4f632f0c097fe4.zip
cpython-a9e18cdd7f3de14c49fea7785a4f632f0c097fe4.tar.gz
cpython-a9e18cdd7f3de14c49fea7785a4f632f0c097fe4.tar.bz2
fix windows test failure - issue13183
-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 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))