mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 08:44:14 +08:00
6ff5b88ca7
Co-authored-by: hauntsaninja <>
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: ...
|