Files
typeshed/builtins/3/atexit.pyi
2015-09-28 14:27:48 -07:00

10 lines
303 B
Python

"""Stub file for the 'atexit' module."""
from typing import Any, Callable
def _clear() -> None: ...
def _ncallbacks() -> int: ...
def _run_exitfuncs() -> None: ...
def register(func: Callable[..., Any], *args, **kwargs) -> Callable[..., Any]: ...
def unregister(func: Callable[..., Any]) -> None: ...