Whitespace normalization.

This commit is contained in:
Tim Peters 2004-07-07 20:54:48 +00:00
parent b7e898a0e2
commit 4e0e1b6a54
32 changed files with 144 additions and 166 deletions

View file

@ -149,7 +149,7 @@ class Cmd:
readline.set_completer(self.old_completer)
except ImportError:
pass
def precmd(self, line):
"""Hook method executed just before the command line is
@ -172,7 +172,7 @@ class Cmd:
"""
pass
def parseline(self, line):
"""Parse the line into a command name and a string containing
the arguments. Returns a tuple containing (command, args, line).