mirror of
https://github.com/wassname/pyreadline.git
synced 2026-07-26 13:27:23 +08:00
20 lines
574 B
Python
20 lines
574 B
Python
from PyReadline import *
|
|
|
|
__all__ = [ 'parse_and_bind',
|
|
'get_line_buffer',
|
|
'insert_text',
|
|
'read_init_file',
|
|
'read_history_file',
|
|
'write_history_file',
|
|
'get_history_length',
|
|
'set_history_length',
|
|
'set_startup_hook',
|
|
'set_pre_input_hook',
|
|
'set_completer',
|
|
'get_completer',
|
|
'get_begidx',
|
|
'get_endidx',
|
|
'set_completer_delims',
|
|
'get_completer_delims',
|
|
'add_history' ]
|