Skip to content

Commit ae37c27

Browse files
Add stubs
1 parent ed0921b commit ae37c27

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from __future__ import annotations
2+
3+
from . import _faulthandler, _version
4+
5+
__all__: list[str] = ["install"]
6+
7+
def _init() -> None: ...
8+
def install(path: os.PathLike | str | bytes) -> None: ...
9+
10+
__version__: str
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from __future__ import annotations
2+
3+
import types
4+
5+
__all__: list[str] = ["init"]
6+
7+
def init(m: types.ModuleType) -> None: ...

0 commit comments

Comments
 (0)