Add __all__ for most modules beginning with 't' (#7373)

This commit is contained in:
Alex Waygood
2022-02-23 18:25:28 -08:00
committed by GitHub
parent 062fc75d73
commit 6a743348ca
22 changed files with 1192 additions and 0 deletions
+2
View File
@@ -1,5 +1,7 @@
from typing import IO, Any, Callable, Sequence, Union
__all__ = ["Timer", "timeit", "repeat", "default_timer"]
_Timer = Callable[[], float]
_Stmt = Union[str, Callable[[], Any]]