mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
34 lines
813 B
Python
34 lines
813 B
Python
"""Stub file for the 'gc' module."""
|
|
# This is an autogenerated file. It serves as a starting point
|
|
# for a more percise manual annotation of this module.
|
|
# Feel free to edit the source below, but remove this header when you do.
|
|
|
|
from typing import List, Tuple, Dict, Undefined, GenericType
|
|
|
|
def collect(*args, **kwargs) -> int:
|
|
raise ValueError()
|
|
|
|
def disable() -> None: pass
|
|
|
|
def enable() -> None: pass
|
|
|
|
def get_count() -> tuple: pass
|
|
|
|
def get_debug() -> int: pass
|
|
|
|
def get_objects() -> list: pass
|
|
|
|
def get_referents(*args, **kwargs) -> list: pass
|
|
|
|
def get_referrers(*args, **kwargs) -> list: pass
|
|
|
|
def get_threshold() -> tuple: pass
|
|
|
|
def is_tracked(*args, **kwargs) -> bool: pass
|
|
|
|
def isenabled() -> bool: pass
|
|
|
|
def set_debug(a: int) -> None: pass
|
|
|
|
def set_threshold(a: int, *args, **kwargs) -> None: pass
|