mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-09 04:52:23 +08:00
Move contents of builtins/* to stdlib/*. This simplifies finding stubs.
This commit is contained in:
9
stdlib/3/atexit.pyi
Normal file
9
stdlib/3/atexit.pyi
Normal file
@@ -0,0 +1,9 @@
|
||||
"""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, **kwargs) -> Callable[..., Any]: ...
|
||||
def unregister(func: Callable[..., Any]) -> None: ...
|
||||
Reference in New Issue
Block a user