-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathtimeit.pyi
32 lines (27 loc) · 1.17 KB
/
timeit.pyi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from collections.abc import Callable, Sequence
from typing import IO, Any
from typing_extensions import TypeAlias
__all__ = ["Timer", "timeit", "repeat", "default_timer"]
_Timer: TypeAlias = Callable[[], float]
_Stmt: TypeAlias = str | Callable[[], object]
default_timer: _Timer
class Timer:
def __init__(
self, stmt: _Stmt = ..., setup: _Stmt = ..., timer: _Timer = ..., globals: dict[str, Any] | None = ...
) -> None: ...
def print_exc(self, file: IO[str] | None = ...) -> None: ...
def timeit(self, number: int = ...) -> float: ...
def repeat(self, repeat: int = ..., number: int = ...) -> list[float]: ...
def autorange(self, callback: Callable[[int, float], object] | None = ...) -> tuple[int, float]: ...
def timeit(
stmt: _Stmt = ..., setup: _Stmt = ..., timer: _Timer = ..., number: int = ..., globals: dict[str, Any] | None = ...
) -> float: ...
def repeat(
stmt: _Stmt = ...,
setup: _Stmt = ...,
timer: _Timer = ...,
repeat: int = ...,
number: int = ...,
globals: dict[str, Any] | None = ...,
) -> list[float]: ...
def main(args: Sequence[str] | None = ..., *, _wrap_timer: Callable[[_Timer], _Timer] | None = ...) -> None: ...