summaryrefslogtreecommitdiff
path: root/Lib/rlcompleter.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-04-16 01:38:40 +0000
committerTim Peters <tim.peters@gmail.com>2002-04-16 01:38:40 +0000
commit863ac44b74cd66f7d289748816d65c65808c149b (patch)
tree8536f8a72110b9996cb9e6746b6bb4cf3cb73733 /Lib/rlcompleter.py
parentc86c1b88f96ec48e5502b9b8ba5cc833f57ce476 (diff)
downloadcpython-git-863ac44b74cd66f7d289748816d65c65808c149b.tar.gz
Whitespace normalization.
Diffstat (limited to 'Lib/rlcompleter.py')
-rw-r--r--Lib/rlcompleter.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py
index 633fad0014..d8208f3b7a 100644
--- a/Lib/rlcompleter.py
+++ b/Lib/rlcompleter.py
@@ -60,7 +60,7 @@ class Completer:
readline.set_completer(Completer(my_namespace).complete)
"""
-
+
if namespace and not isinstance(namespace, dict):
raise TypeError,'namespace must be a dictionary'
@@ -82,7 +82,7 @@ class Completer:
"""
if self.use_main_ns:
self.namespace = __main__.__dict__
-
+
if state == 0:
if "." in text:
self.matches = self.attr_matches(text)