Improve readline typings (#7141)

This commit is contained in:
Nikita Sobolev
2022-02-06 12:31:19 +03:00
committed by GitHub
parent 62e33cbbd5
commit 8cb1518bcd

View File

@@ -1,10 +1,11 @@
import sys
from _typeshed import StrOrBytesPath
from typing import Callable, Optional, Sequence
from typing import Callable, Sequence
if sys.platform != "win32":
_CompleterT = Optional[Callable[[str, int], Optional[str]]]
_CompDispT = Optional[Callable[[str, Sequence[str], int], None]]
_Completer = Callable[[str, int], str | None]
_CompDisp = Callable[[str, Sequence[str], int], None]
def parse_and_bind(__string: str) -> None: ...
def read_init_file(__filename: StrOrBytesPath | None = ...) -> None: ...
def get_line_buffer() -> str: ...
@@ -22,13 +23,13 @@ if sys.platform != "win32":
def replace_history_item(__pos: int, __line: str) -> None: ...
def add_history(__string: str) -> None: ...
def set_auto_history(__enabled: bool) -> None: ...
def set_startup_hook(__function: Callable[[], None] | None = ...) -> None: ...
def set_pre_input_hook(__function: Callable[[], None] | None = ...) -> None: ...
def set_completer(__function: _CompleterT = ...) -> None: ...
def get_completer() -> _CompleterT: ...
def set_startup_hook(__function: Callable[[], object] | None = ...) -> None: ...
def set_pre_input_hook(__function: Callable[[], object] | None = ...) -> None: ...
def set_completer(__function: _Completer | None = ...) -> None: ...
def get_completer() -> _Completer | None: ...
def get_completion_type() -> int: ...
def get_begidx() -> int: ...
def get_endidx() -> int: ...
def set_completer_delims(__string: str) -> None: ...
def get_completer_delims() -> str: ...
def set_completion_display_matches_hook(__function: _CompDispT = ...) -> None: ...
def set_completion_display_matches_hook(__function: _CompDisp | None = ...) -> None: ...