mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 08:47:39 +08:00
8 lines
269 B
Python
8 lines
269 B
Python
"""Stub file for the 'atexit' module."""
|
|
|
|
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: ...
|