Add curses.has_extended_color_support() for Python 3.10 (#5549)

This commit is contained in:
Pavel Karateev
2021-05-28 19:50:36 +03:00
committed by GitHub
parent 9795bae6f7
commit 33ea648988

View File

@@ -291,6 +291,10 @@ def getsyx() -> Tuple[int, int]: ...
def getwin(__file: BinaryIO) -> _CursesWindow: ...
def halfdelay(__tenths: int) -> None: ...
def has_colors() -> bool: ...
if sys.version_info >= (3, 10):
def has_extended_color_support() -> bool: ...
def has_ic() -> bool: ...
def has_il() -> bool: ...
def has_key(__key: int) -> bool: ...