Whitespace normalization.

This commit is contained in:
Tim Peters 2006-07-27 15:11:00 +00:00
parent 3e246a811d
commit daea035bac
2 changed files with 1 additions and 2 deletions

View File

@ -231,7 +231,7 @@ class Pdb(bdb.Bdb, cmd.Cmd):
to the prompt. to the prompt.
Checks whether this line is typed at the normal prompt or in Checks whether this line is typed at the normal prompt or in
a breakpoint command list definition. a breakpoint command list definition.
""" """
if not self.commands_defining: if not self.commands_defining:
return cmd.Cmd.onecmd(self, line) return cmd.Cmd.onecmd(self, line)

View File

@ -256,4 +256,3 @@ def test_main():
if __name__ == "__main__": if __name__ == "__main__":
test_main() test_main()