mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-21 11:21:19 +08:00
stdlib: add argument default values (#9501)
This commit is contained in:
@@ -35,7 +35,7 @@ class scheduler:
|
||||
def enter(
|
||||
self, delay: float, priority: Any, action: _ActionCallback, argument: tuple[Any, ...] = ..., kwargs: dict[str, Any] = ...
|
||||
) -> Event: ...
|
||||
def run(self, blocking: bool = ...) -> float | None: ...
|
||||
def run(self, blocking: bool = True) -> float | None: ...
|
||||
def cancel(self, event: Event) -> None: ...
|
||||
def empty(self) -> bool: ...
|
||||
@property
|
||||
|
||||
Reference in New Issue
Block a user