# coding: utf-8 # AUTO-GENERATED FILE -- DO NOT EDIT """ Importing this module enables command line editing using libedit readline. """ _READLINE_LIBRARY_VERSION = 'EditLine wrapper' _READLINE_RUNTIME_VERSION = 1026 _READLINE_VERSION = 1026 __doc__ = 'Importing this module enables command line editing using libedit readline.' __file__ = '/Users/maint/Documents/src/ide/build-files/build-temp/runtimes-release/__os__/macos/runtime-python3.12/lib/Python.framework/Versions/3.12/lib/python3.12/lib-dynload/readline.cpython-312-darwin.so' __loader__ = None __name__ = 'readline' __package__ = '' __spec__ = None def add_history(string): """ Add an item to the history buffer. """ pass def clear_history(): """ Clear the current readline history. """ pass def get_begidx(): """ Get the beginning index of the completion scope. """ pass def get_completer(): """ Get the current completer function. """ pass def get_completer_delims(): """ Get the word delimiters for completion. """ pass def get_completion_type(): """ Get the type of completion being attempted. """ pass def get_current_history_length(): """ Return the current (not the maximum) length of history. """ pass def get_endidx(): """ Get the ending index of the completion scope. """ pass def get_history_item(index): """ Return the current contents of history item at one-based index. """ pass def get_history_length(): """ Return the maximum number of lines that will be written to the history file. """ pass def get_line_buffer(): """ Return the current contents of the line buffer. """ pass def insert_text(string): """ Insert text into the line buffer at the cursor position. """ pass def parse_and_bind(string): """ Execute the init line provided in the string argument. """ pass def read_history_file(filename=None): """ Load a readline history file. The default filename is ~/.history. """ pass def read_init_file(filename=None): """ Execute a readline initialization file. The default filename is the last filename used. """ pass def redisplay(): """ Change what's displayed on the screen to reflect contents of the line buffer. """ pass def remove_history_item(pos): """ Remove history item given by its zero-based position. """ pass def replace_history_item(pos, line): """ Replaces history item given by its position with contents of line. pos is zero-based. """ pass def set_auto_history(enabled): """ Enables or disables automatic history. """ pass def set_completer(function=None): """ Set or remove the completer function. The function is called as function(text, state), for state in 0, 1, 2, ..., until it returns a non-string. It should return the next possible completion starting with 'text'. """ pass def set_completer_delims(string): """ Set the word delimiters for completion. """ pass def set_completion_display_matches_hook(function=None): """ Set or remove the completion display function. The function is called as function(substitution, [matches], longest_match_length) once each time matches need to be displayed. """ pass def set_history_length(length): """ Set the maximal number of lines which will be written to the history file. A negative length is used to inhibit history truncation. """ pass def set_pre_input_hook(function=None): """ Set or remove the function invoked by the rl_pre_input_hook callback. The function is called with no arguments after the first prompt has been printed and just before readline starts reading input characters. """ pass def set_startup_hook(function=None): """ Set or remove the function invoked by the rl_startup_hook callback. The function is called with no arguments just before readline prints the first prompt. """ pass def write_history_file(filename=None): """ Save a readline history file. The default filename is ~/.history. """ pass