mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
16 lines
356 B
Python
16 lines
356 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]: ...
|
|
|
|
text_type: type[str]
|
|
|
|
def ustr(value, hint_encoding: str = ..., errors: str = ...) -> str: ...
|
|
def exception_to_unicode(e: BaseException) -> str: ...
|