Files
odoo-stubs/odoo-stubs/cli/shell.pyi
Trinh Anh Ngoc 9f1f171be8 Update stubs
2023-05-11 14:00:32 +07:00

22 lines
639 B
Python

import code
from . import Command
from typing import Any, Optional
_logger: Any
def raise_keyboard_interrupt(*a) -> None: ...
class Console(code.InteractiveConsole):
def __init__(self, locals: Optional[Any] = ..., filename: str = ...) -> None: ...
class Shell(Command):
supported_shells: Any
def init(self, args) -> None: ...
def console(self, local_vars): ...
def ipython(self, local_vars) -> None: ...
def ptpython(self, local_vars) -> None: ...
def bpython(self, local_vars) -> None: ...
def python(self, local_vars) -> None: ...
def shell(self, dbname) -> None: ...
def run(self, args): ...