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