mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
import sys
|
|
from collections.abc import Callable
|
|
from typing import Any
|
|
from typing_extensions import Literal, TypeAlias
|
|
|
|
DEBUG_COLLECTABLE: Literal[2]
|
|
DEBUG_LEAK: Literal[38]
|
|
DEBUG_SAVEALL: Literal[32]
|
|
DEBUG_STATS: Literal[1]
|
|
DEBUG_UNCOLLECTABLE: Literal[4]
|
|
|
|
_CallbackType: TypeAlias = Callable[[Literal["start", "stop"], dict[str, int]], object]
|
|
|
|
callbacks: list[_CallbackType]
|
|
garbage: list[Any]
|
|
|
|
def collect(generation: int = ...) -> int: ...
|
|
def disable() -> None: ...
|
|
def enable() -> None: ...
|
|
def get_count() -> tuple[int, int, int]: ...
|
|
def get_debug() -> int: ...
|
|
|
|
if sys.version_info >= (3, 8):
|
|
def get_objects(generation: int | None = ...) -> list[Any]: ...
|
|
|
|
else:
|
|
def get_objects() -> list[Any]: ...
|
|
|
|
def freeze() -> None: ...
|
|
def unfreeze() -> None: ...
|
|
def get_freeze_count() -> int: ...
|
|
def get_referents(*objs: Any) -> list[Any]: ...
|
|
def get_referrers(*objs: Any) -> list[Any]: ...
|
|
def get_stats() -> list[dict[str, Any]]: ...
|
|
def get_threshold() -> tuple[int, int, int]: ...
|
|
def is_tracked(__obj: Any) -> bool: ...
|
|
|
|
if sys.version_info >= (3, 9):
|
|
def is_finalized(__obj: Any) -> bool: ...
|
|
|
|
def isenabled() -> bool: ...
|
|
def set_debug(__flags: int) -> None: ...
|
|
def set_threshold(threshold0: int, threshold1: int = ..., threshold2: int = ...) -> None: ...
|