mirror of
https://github.com/odoo-ide/odoo-stubs.git
synced 2025-05-08 16:52:26 +03:00
18 lines
704 B
Python
18 lines
704 B
Python
# Stubs for odoo.tools.profiler (Python 3)
|
|
#
|
|
# NOTE: This dynamically typed stub was automatically generated by stubgen.
|
|
|
|
from typing import Any, Optional
|
|
|
|
class _LogTracer:
|
|
profiles: Any = ...
|
|
whitelist: Any = ...
|
|
blacklist: Any = ...
|
|
files: Any = ...
|
|
deep: Any = ...
|
|
first_frame: Any = ...
|
|
def __init__(self, whitelist: Optional[Any] = ..., blacklist: Optional[Any] = ..., files: Optional[Any] = ..., deep: bool = ...) -> None: ...
|
|
def tracer(self, frame: Any, event: Any, arg: Any): ...
|
|
|
|
def profile(method: Optional[Any] = ..., whitelist: Optional[Any] = ..., blacklist: Any = ..., files: Optional[Any] = ..., minimum_time: int = ..., minimum_queries: int = ...): ...
|