Home | History | Annotate | Download | only in python2.7

Lines Matching refs:readline

1 """Word completion for GNU readline.
12 readline.parse_and_bind("tab: complete")
17 the completion to fail). This is a feature -- since readline sets the tty
27 - GNU readline is also used by the built-in functions input() and
33 - When the original stdin is not a tty device, GNU readline is never
34 used, and this module (and the readline module) are silently inactive.
54 readline via the set_completer() call:
56 readline.set_completer(Completer(my_namespace).complete)
162 import readline
166 readline.set_completer(Completer().complete)