mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
8 lines
271 B
Python
8 lines
271 B
Python
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: ...
|