We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 433ae06 commit 38e8a08Copy full SHA for 38e8a08
Lib/_pyrepl/fancycompleter.py
@@ -5,7 +5,6 @@
5
"""
6
Colorful tab completion for Python prompt
7
8
-from _pyrepl import readline
9
from _colorize import ANSIColors, get_colors
10
import rlcompleter
11
import types
@@ -53,6 +52,7 @@ class Completer(rlcompleter.Completer):
53
52
depending on the type.
54
55
def __init__(self, namespace=None, Config=DefaultConfig):
+ from _pyrepl import readline
56
rlcompleter.Completer.__init__(self, namespace)
57
self.config = Config()
58
self.config.setup()
0 commit comments