From 8bb18aa5415b8fd6878a8c1f15dbbf2b561336cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oleg=20H=C3=B6fling?= Date: Sun, 12 Jun 2022 19:34:56 +0200 Subject: [PATCH] add undocumented attributes for threading.Timer (#8059) --- stdlib/threading.pyi | 6 ++++++ 1 file changed, 6 insertions(+) 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,