Files
odoo-stubs/odoo-stubs/loglevels.pyi
Trinh Anh Ngoc 4cccc17344 Update stubs
2024-07-29 16:01:37 +07:00

13 lines
333 B
Python

from typing import Generator
LOG_NOTSET: str
LOG_DEBUG: str
LOG_INFO: str
LOG_WARNING: str
LOG_ERROR: str
LOG_CRITICAL: str
def get_encodings(hint_encoding: str = ...) -> Generator[str, None, None]: ...
def ustr(value, hint_encoding: str = ..., errors: str = ...) -> str: ...
def exception_to_unicode(e: BaseException) -> str: ...