blob: 789632eee4787e865643b06d3f6c233dd596c3ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
from __future__ import annotations
__all__ = [
"Base",
"call_fn",
"clear",
"create",
"create_and_store",
"is_alive",
"store",
]
class Base:
def __init__(self, arg0: str) -> None: ...
def fn(self) -> str: ...
def call_fn(arg0: str) -> str: ...
def clear() -> None: ...
def create(arg0: str) -> Base: ...
def create_and_store(arg0: str) -> Base: ...
def is_alive(arg0: str) -> bool: ...
def store(arg0: Base) -> None: ...
|