Skip to content

Commit 33ea648

Browse files
authored
Add curses.has_extended_color_support() for Python 3.10 (#5549)
1 parent 9795bae commit 33ea648

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

stdlib/_curses.pyi

+4
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,10 @@ def getsyx() -> Tuple[int, int]: ...
291291
def getwin(__file: BinaryIO) -> _CursesWindow: ...
292292
def halfdelay(__tenths: int) -> None: ...
293293
def has_colors() -> bool: ...
294+
295+
if sys.version_info >= (3, 10):
296+
def has_extended_color_support() -> bool: ...
297+
294298
def has_ic() -> bool: ...
295299
def has_il() -> bool: ...
296300
def has_key(__key: int) -> bool: ...

0 commit comments

Comments
 (0)