diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-07-07 20:54:48 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-07-07 20:54:48 (GMT) |
commit | 4e0e1b6a540e664e89739456db4c706701bf062b (patch) | |
tree | 6a144e54fe6f0055d6e412181df0bbad458f8b10 /Lib/cmd.py | |
parent | b7e898a0e2a8d4077cbabeada039200fde5ada60 (diff) | |
download | cpython-4e0e1b6a540e664e89739456db4c706701bf062b.zip cpython-4e0e1b6a540e664e89739456db4c706701bf062b.tar.gz cpython-4e0e1b6a540e664e89739456db4c706701bf062b.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r-- | Lib/cmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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). |