加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
history.pyi 1.25 KB
一键复制 编辑 原始数据 按行查看 历史
edmundwz 提交于 2019-03-28 21:27 . update
# Stubs for history (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from control import AbstractProxyExt
from typing import Any
class HistoryDatabaseException(Exception): ...
class HistoryClosedException(Exception): ...
class HistoryDeletedException(Exception): ...
database: Any
class HistoryExt(AbstractProxyExt):
status: Any = ...
activate: Any = ...
deactivate: Any = ...
def __init__(self) -> None: ...
def get_status(self): ...
def set_status(self, v: Any) -> None: ...
def do_activate(self, v: Any) -> None: ...
def do_inactivate(self, v: Any) -> None: ...
class CovHistoryExt(HistoryExt):
def __init__(self) -> None: ...
class IntervalHistoryExt(HistoryExt):
def __init__(self) -> None: ...
class BooleanCovHistoryExt(CovHistoryExt):
def __init__(self) -> None: ...
class BooleanIntervalHistoryExt(IntervalHistoryExt):
def __init__(self) -> None: ...
class NumberCovHistoryExt(CovHistoryExt):
def __init__(self) -> None: ...
class NumberIntervalHistoryExt(IntervalHistoryExt):
def __init__(self) -> None: ...
class StringCovHistoryExt(CovHistoryExt):
def __init__(self) -> None: ...
class StringInterval(IntervalHistoryExt):
def __init__(self) -> None: ...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化