Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion stdlib/@tests/stubtest_allowlists/darwin-py314.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# TODO: New errors in Python 3.14 that need to be fixed or moved below
# ====================================================================

_curses.assume_default_colors
_posixsubprocess.fork_exec
asyncio.tools
asyncio.unix_events.__all__
Expand Down
1 change: 0 additions & 1 deletion stdlib/@tests/stubtest_allowlists/linux-py314.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
# TODO: New errors in Python 3.14 that need to be fixed or moved below
# ====================================================================

_curses.assume_default_colors
_posixsubprocess.fork_exec
asyncio.tools
asyncio.unix_events.__all__
Expand Down
3 changes: 3 additions & 0 deletions stdlib/_curses.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,9 @@ def has_colors() -> bool: ...
if sys.version_info >= (3, 10):
def has_extended_color_support() -> bool: ...

if sys.version_info >= (3, 14):
def assume_default_colors(fg: int, bg: int, /) -> None: ...

def has_ic() -> bool: ...
def has_il() -> bool: ...
def has_key(key: int, /) -> bool: ...
Expand Down