mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
10 lines
313 B
Python
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: ...
|