Remove blank lines from pdb output
It is the problem that causes python-3.2 pdb tests to fail on travis.
This commit is contained in:
parent
9a89d4defa
commit
0058919c2b
|
@ -118,4 +118,6 @@ with codecs.open(fname, 'r', encoding='utf-8') as R:
|
|||
line = ''
|
||||
elif line == '-> self.quitting = 1\n':
|
||||
line = '-> self.quitting = True\n'
|
||||
elif line == '\n':
|
||||
line = ''
|
||||
W.write(line)
|
||||
|
|
Loading…
Reference in New Issue