🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-08 07:18:17 | PHP 8.2.32
📂
/ (Root)
/
opt
/
alt
/
python38
/
lib
/
python3.8
/
site-packages
/
reactivex
/
abc
📍 /opt/alt/python38/lib/python3.8/site-packages/reactivex/abc
🔄 Refresh
✏️
Editing: startable.py
Read Only
from abc import ABC, abstractmethod class StartableBase(ABC): """Abstract base class for Thread- and Process-like objects.""" __slots__ = () @abstractmethod def start(self) -> None: raise NotImplementedError __all__ = ["StartableBase"]
💾 Save Changes
❌ Cancel