diff options
author | Guido van Rossum <guido@python.org> | 1997-10-22 20:52:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-10-22 20:52:53 (GMT) |
commit | 12f86ade21f6f5c38b9d1c7fb42a3044a82aad9c (patch) | |
tree | 0ec230eae1dda5ae2eccc880341c6fd5282c5fb1 | |
parent | a8832b45e77fc4f75b6071a335ab4e414ce3f266 (diff) | |
download | cpython-12f86ade21f6f5c38b9d1c7fb42a3044a82aad9c.zip cpython-12f86ade21f6f5c38b9d1c7fb42a3044a82aad9c.tar.gz cpython-12f86ade21f6f5c38b9d1c7fb42a3044a82aad9c.tar.bz2 |
Removed some unneeded imports, moved others around.
-rw-r--r-- | Lib/rlcompleter.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py index 285faed..4deb0bc 100644 --- a/Lib/rlcompleter.py +++ b/Lib/rlcompleter.py @@ -41,12 +41,8 @@ used, and this module (and the readline module) are silently inactive. """ import readline -import keyword import __builtin__ import __main__ -import string -import re -import traceback class Completer: @@ -71,6 +67,7 @@ class Completer: currently defines in __main__ that match. """ + import keyword matches = [] n = len(text) for list in [keyword.kwlist, @@ -93,6 +90,7 @@ class Completer: with a __getattr__ hook is evaluated. """ + import re m = re.match(r"(\w+(\.\w+)*)\.(\w*)", text) if not m: return |