File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 1+ import sys
12from collections .abc import Iterable
23from enum import Enum
34from typing import NamedTuple , SupportsIndex , type_check_only
@@ -37,5 +38,9 @@ class CycleFoundException(Exception):
3738def get_all_awaited_by (pid : SupportsIndex ) -> list [_AwaitedInfo ]: ...
3839def build_async_tree (result : Iterable [_AwaitedInfo ], task_emoji : str = "(T)" , cor_emoji : str = "" ) -> list [list [str ]]: ...
3940def 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+
4045def display_awaited_by_tasks_table (pid : SupportsIndex ) -> None : ...
4146def display_awaited_by_tasks_tree (pid : SupportsIndex ) -> None : ...
You can’t perform that action at this time.
0 commit comments