mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
11 lines
190 B
Python
11 lines
190 B
Python
# Stubs for gc
|
|
|
|
# NOTE: These are incomplete!
|
|
|
|
import typing
|
|
|
|
def collect(generation: int = -1) -> int: ...
|
|
def disable() -> None: ...
|
|
def enable() -> None: ...
|
|
def isenabled() -> bool: ...
|