mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
from typing import IO, Any, Callable, Sequence, Union
|
|
|
|
__all__ = ["Timer", "timeit", "repeat", "default_timer"]
|
|
|
|
_Timer = Callable[[], float]
|
|
_Stmt = Union[str, Callable[[], Any]]
|
|
|
|
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], Any] | 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: ...
|