Lines Matching defs: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 - When the original stdin is not a tty device, GNU readline is never
28 used, and this module (and the readline module) are silently inactive.
52 readline via the set_completer() call:
54 readline.set_completer(Completer(my_namespace).complete)
82 readline.insert_text('\t')
83 readline.redisplay()
210 import readline
214 readline.set_completer(Completer().complete)
215 # Release references early at shutdown (the readline module's
218 atexit.register(lambda: readline.set_completer(None))