mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 21:43:59 +08:00
Add asyncio.tools.exit_with_permission_help_text() (#14747)
Part of #14741
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
import sys
|
||||
from collections.abc import Iterable
|
||||
from enum import Enum
|
||||
from typing import NamedTuple, SupportsIndex, type_check_only
|
||||
@@ -37,5 +38,9 @@ class CycleFoundException(Exception):
|
||||
def get_all_awaited_by(pid: SupportsIndex) -> list[_AwaitedInfo]: ...
|
||||
def build_async_tree(result: Iterable[_AwaitedInfo], task_emoji: str = "(T)", cor_emoji: str = "") -> list[list[str]]: ...
|
||||
def build_task_table(result: Iterable[_AwaitedInfo]) -> list[list[int | str]]: ...
|
||||
|
||||
if sys.version_info >= (3, 14):
|
||||
def exit_with_permission_help_text() -> None: ...
|
||||
|
||||
def display_awaited_by_tasks_table(pid: SupportsIndex) -> None: ...
|
||||
def display_awaited_by_tasks_tree(pid: SupportsIndex) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user