summaryrefslogtreecommitdiff
path: root/Lib/cmd.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-19 02:35:07 +0000
committerTim Peters <tim.peters@gmail.com>2003-02-19 02:35:07 +0000
commitf37059a4fcfe2041e122400eb776133fea5fa8d2 (patch)
treec53b641329c599cdcfeb0f35f20aff8ce7a130e4 /Lib/cmd.py
parent44d273f4a1d1b4b9cbf3d154ac64e3188c408099 (diff)
downloadcpython-f37059a4fcfe2041e122400eb776133fea5fa8d2.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/cmd.py')
-rw-r--r--Lib/cmd.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/cmd.py b/Lib/cmd.py
index bc91c0081e..54be8a0463 100644
--- a/Lib/cmd.py
+++ b/Lib/cmd.py
@@ -79,9 +79,9 @@ class Cmd:
def __init__(self, completekey='tab', stdin=None, stdout=None):
"""Instantiate a line-oriented interpreter framework.
- The optional argument 'completekey' is the readline name of a
- completion key; it defaults to the Tab key. If completekey is
- not None and the readline module is available, command completion
+ The optional argument 'completekey' is the readline name of a
+ completion key; it defaults to the Tab key. If completekey is
+ not None and the readline module is available, command completion
is done automatically. The optional arguments stdin and stdout
specify alternate input and output file objects; if not specified,
sys.stdin and sys.stdout are used.