-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Expand file tree
/
Copy path_docstring.pyi
More file actions
24 lines (18 loc) · 693 Bytes
/
Copy path_docstring.pyi
File metadata and controls
24 lines (18 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from collections.abc import Callable
from typing import Any, overload
def kwarg_doc[T](text: str) -> Callable[[T], T]: ...
class Substitution:
@overload
def __init__(self, *args: str): ...
@overload
def __init__(self, **kwargs: str): ...
def __call__[T](self, func: T) -> T: ...
class _ArtistKwdocLoader(dict[str, str]):
def __missing__(self, key: str) -> str: ...
class _ArtistPropertiesSubstitution:
def __init__(self) -> None: ...
def register(self, **kwargs) -> None: ...
def __call__[T](self, obj: T) -> T: ...
def copy[T](source: Any) -> Callable[[T], T]: ...
dedent_interpd: _ArtistPropertiesSubstitution
interpd: _ArtistPropertiesSubstitution