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

Lines Matching defs:Completer

3 The completer completes keywords, built-ins and globals in a selectable
16 - Exceptions raised by the completer function are *ignored* (and generally cause
28 raw_input(), and thus these also benefit/suffer from the completer
30 specifying its own completer function and using raw_input() for all
41 __all__ = ["Completer"]
43 class Completer:
45 """Create a new completer for the command line.
47 Completer([namespace]) -> completer instance.
53 Completer instances should be used as the completion mechanism of
56 readline.set_completer(Completer(my_namespace).complete)
166 readline.set_completer(Completer().complete)