line_profiler.pyi 233 B

12345678910
  1. from typing import Callable
  2. class LineProfiler:
  3. def __init__(self): ...
  4. def add_function(self, func: Callable) -> None: ...
  5. def runcall(self, func: Callable, *args) -> None: ...
  6. def print_stats(self) -> None: ...