pocketpy/include/typings/line_profiler.pyi
2024-02-07 11:24:05 +08:00

11 lines
233 B
Python

from typing import Callable
class LineProfiler:
def __init__(self): ...
def add_function(self, func: Callable) -> None: ...
def runcall(self, func: Callable, *args) -> None: ...
def print_stats(self) -> None: ...