Removed some unneeded imports, moved others around.

This commit is contained in:
Guido van Rossum 1997-10-22 20:52:53 +00:00
parent a8832b45e7
commit 12f86ade21
1 changed files with 2 additions and 4 deletions

View File

@ -41,12 +41,8 @@ used, and this module (and the readline module) are silently inactive.
""" """
import readline import readline
import keyword
import __builtin__ import __builtin__
import __main__ import __main__
import string
import re
import traceback
class Completer: class Completer:
@ -71,6 +67,7 @@ class Completer:
currently defines in __main__ that match. currently defines in __main__ that match.
""" """
import keyword
matches = [] matches = []
n = len(text) n = len(text)
for list in [keyword.kwlist, for list in [keyword.kwlist,
@ -93,6 +90,7 @@ class Completer:
with a __getattr__ hook is evaluated. with a __getattr__ hook is evaluated.
""" """
import re
m = re.match(r"(\w+(\.\w+)*)\.(\w*)", text) m = re.match(r"(\w+(\.\w+)*)\.(\w*)", text)
if not m: if not m:
return return