Home | History | Annotate | Download | only in Lib

Lines Matching refs:readline

44 These interpreters use raw_input; thus, if the readline module is loaded,

82 The optional argument 'completekey' is the readline name of a
84 not None and the readline module is available, command completion
112 import readline
113 self.old_completer = readline.get_completer()
114 readline.set_completer(self.complete)
115 readline.parse_and_bind(self.completekey+": complete")
136 line = self.stdin.readline()
148 import readline
149 readline.set_completer(self.old_completer)
260 import readline
261 origline = readline.get_line_buffer()
264 begidx = readline.get_begidx() - stripped
265 endidx = readline.get_endidx() - stripped