cpython: 2644e4ea02d3 (original) (raw)

Mercurial > cpython

changeset 76783:2644e4ea02d3 2.7

#13183: backport fixes to test_pdb to 2.7 branch [#13183]

Georg Brandl georg@python.org
date Sun, 06 May 2012 11:53:51 +0200
parents 35ef949e85d7
children 48385618525b
files Lib/test/test_pdb.py
diffstat 1 files changed, 5 insertions(+), 2 deletions(-)[+] [-] Lib/test/test_pdb.py 7

line wrap: on

line diff

--- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -20,6 +20,7 @@ class PdbTestCase(unittest.TestCase): filename = 'main.py' with open(filename, 'w') as f: f.write(textwrap.dedent(script))

@@ -61,9 +62,11 @@ class PdbTestCase(unittest.TestCase): """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar))

class PdbTestInput(object):