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
1
2
from collections .abc import Iterable
2
3
from enum import Enum
3
4
from typing import NamedTuple , SupportsIndex , type_check_only
@@ -37,5 +38,9 @@ class CycleFoundException(Exception):
37
38
def get_all_awaited_by (pid : SupportsIndex ) -> list [_AwaitedInfo ]: ...
38
39
def build_async_tree (result : Iterable [_AwaitedInfo ], task_emoji : str = "(T)" , cor_emoji : str = "" ) -> list [list [str ]]: ...
39
40
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
+
40
45
def display_awaited_by_tasks_table (pid : SupportsIndex ) -> None : ...
41
46
def display_awaited_by_tasks_tree (pid : SupportsIndex ) -> None : ...
You can’t perform that action at this time.
0 commit comments