Skip to content

Commit a54c270

Browse files
authored
Add asyncio.tools.exit_with_permission_help_text() (#14747)
Part of #14741
1 parent 970603e commit a54c270

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

stdlib/asyncio/tools.pyi

Lines changed: 5 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,9 @@ 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+
42+
if sys.version_info >= (3, 14):
43+
def exit_with_permission_help_text() -> None: ...
44+
4045
def display_awaited_by_tasks_table(pid: SupportsIndex) -> None: ...
4146
def display_awaited_by_tasks_tree(pid: SupportsIndex) -> None: ...

0 commit comments

Comments
 (0)