We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 617f423 commit 54932cfCopy full SHA for 54932cf
stdlib/asyncio/tools.pyi
@@ -1,3 +1,4 @@
1
+import sys
2
from collections.abc import Iterable
3
from enum import Enum
4
from typing import NamedTuple, SupportsIndex, type_check_only
@@ -37,5 +38,7 @@ class CycleFoundException(Exception):
37
38
def get_all_awaited_by(pid: SupportsIndex) -> list[_AwaitedInfo]: ...
39
def build_async_tree(result: Iterable[_AwaitedInfo], task_emoji: str = "(T)", cor_emoji: str = "") -> list[list[str]]: ...
40
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: ...
43
def display_awaited_by_tasks_table(pid: SupportsIndex) -> None: ...
44
def display_awaited_by_tasks_tree(pid: SupportsIndex) -> None: ...
0 commit comments