This commit is contained in:
Trinh Anh Ngoc
2019-12-09 16:16:42 +07:00
parent 4f5e4e9216
commit 40f7b77380
69 changed files with 2163 additions and 3 deletions

25
odoo-stubs/cli/shell.pyi Normal file
View File

@@ -0,0 +1,25 @@
# Stubs for odoo.cli.shell (Python 3)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
import code
from typing import Any, Optional
from . import Command
def raise_keyboard_interrupt(*a: Any) -> None: ...
class Console(code.InteractiveConsole):
def __init__(self, locals: Optional[Any] = ..., filename: str = ...) -> None: ...
class Shell(Command):
supported_shells: Any = ...
def init(self, args: Any) -> None: ...
def console(self, local_vars: Any): ...
def ipython(self, local_vars: Any) -> None: ...
def ptpython(self, local_vars: Any) -> None: ...
def bpython(self, local_vars: Any) -> None: ...
def python(self, local_vars: Any) -> None: ...
def shell(self, dbname: Any) -> None: ...
def run(self, args: Any): ...