Files
typeshed/stdlib/3/atexit.pyi
2016-09-23 13:35:55 -07:00

10 lines
313 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: Any, **kwargs: Any) -> Callable[..., Any]: ...
def unregister(func: Callable[..., Any]) -> None: ...