OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
aiosignal
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:01 AM
rwxr-xr-x
📄
__init__.py
867 bytes
05/08/2024 06:43:28 PM
rw-r--r--
📄
__init__.pyi
311 bytes
05/08/2024 06:43:28 PM
rw-r--r--
📁
__pycache__
-
05/08/2024 06:43:28 PM
rwxr-xr-x
📄
py.typed
0 bytes
05/08/2024 06:43:28 PM
rw-r--r--
Editing: __init__.pyi
Close
from typing import Any, Generic, TypeVar from frozenlist import FrozenList __all__ = ("Signal",) _T = TypeVar("_T") class Signal(FrozenList[_T], Generic[_T]): def __init__(self, owner: Any) -> None: ... def __repr__(self) -> str: ... async def send(self, *args: Any, **kwargs: Any) -> None: ...