diff --git a/stdlib/threading.pyi b/stdlib/threading.pyi index f5f5aaa4d..afc37b771 100644 --- a/stdlib/threading.pyi +++ b/stdlib/threading.pyi @@ -166,6 +166,12 @@ if sys.version_info >= (3, 8): ExceptHookArgs = _ExceptHookArgs class Timer(Thread): + args: Iterable[Any] # undocumented + finished: Event # undocumented + function: Callable[..., Any] # undocumented + interval: float # undocumented + kwargs: Mapping[str, Any] # undocumented + def __init__( self, interval: float,