Lines Matching defs:readline
61 The readline module is also automatically configured to enable
64 isolated mode (-I) disables automatic readline configuration.
434 """Enable default readline configuration on interactive prompts, by
437 If the readline module can be imported, the hook will set the Tab key
445 import readline
452 readline_doc = getattr(readline, '__doc__', '')
454 readline.parse_and_bind('bind ^I rl_complete')
456 readline.parse_and_bind('tab: complete')
459 readline.read_init_file()
467 if readline.get_current_history_length() == 0:
470 # each interpreter exit when readline was already configured
476 readline.read_history_file(history)
482 readline.write_history_file(history)