Skip to content

Commit 54932cf

Browse files
committed
Add asyncio.tools.exit_with_permission_help_text()
Part of #14741
1 parent 617f423 commit 54932cf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

stdlib/asyncio/tools.pyi

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import sys
12
from collections.abc import Iterable
23
from enum import Enum
34
from typing import NamedTuple, SupportsIndex, type_check_only
@@ -37,5 +38,7 @@ class CycleFoundException(Exception):
3738
def get_all_awaited_by(pid: SupportsIndex) -> list[_AwaitedInfo]: ...
3839
def build_async_tree(result: Iterable[_AwaitedInfo], task_emoji: str = "(T)", cor_emoji: str = "") -> list[list[str]]: ...
3940
def build_task_table(result: Iterable[_AwaitedInfo]) -> list[list[int | str]]: ...
41+
if sys.version_info >= (3, 14):
42+
def exit_with_permission_help_text() -> None: ...
4043
def display_awaited_by_tasks_table(pid: SupportsIndex) -> None: ...
4144
def display_awaited_by_tasks_tree(pid: SupportsIndex) -> None: ...

0 commit comments

Comments
 (0)