mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
28 lines
886 B
Python
28 lines
886 B
Python
# Stubs for gc (Python 2)
|
|
|
|
from typing import List, Any, Tuple
|
|
|
|
def enable() -> None: ...
|
|
def disable() -> None: ...
|
|
def isenabled() -> bool: ...
|
|
def collect(generation: int = None) -> int: ...
|
|
def set_debug(flags: Any) -> None: ...
|
|
def get_debug() -> Any: ...
|
|
def get_objects() -> List[Any]: ...
|
|
def set_threshold(threshold0: int, threshold1: int = None, threshold2: int = None) -> None: ...
|
|
def get_count() -> Tuple[int, int, int]: ...
|
|
def get_threshold() -> Tuple[int, int, int]: ...
|
|
def get_referrers(*objs: Any) -> List[Any]: ...
|
|
def get_referents(*objs: Any) -> List[Any]: ...
|
|
def is_tracked(obj: Any) -> bool: ...
|
|
|
|
garbage = ... # type: List[Any]
|
|
|
|
DEBUG_STATS = ... # type: Any
|
|
DEBUG_COLLECTABLE = ... # type: Any
|
|
DEBUG_UNCOLLECTABLE = ... # type: Any
|
|
DEBUG_INSTANCES = ... # type: Any
|
|
DEBUG_OBJECTS = ... # type: Any
|
|
DEBUG_SAVEALL = ... # type: Any
|
|
DEBUG_LEAK = ... # type: Any
|