Skip to content

Commit

Permalink
add undocumented attributes for threading.Timer (#8059)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoefling authored Jun 12, 2022
1 parent 55eb19d commit 8bb18aa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions stdlib/threading.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8bb18aa

Please sign in to comment.