We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e926f commit 3f97d38Copy full SHA for 3f97d38
stdlib/threading.pyi
@@ -169,9 +169,9 @@ class Event:
169
def clear(self) -> None: ...
170
def wait(self, timeout: float | None = None) -> bool: ...
171
172
-excepthook = _excepthook
+excepthook: Callable[[_ExceptHookArgs], object]
173
if sys.version_info >= (3, 10):
174
- __excepthook__ = _excepthook
+ __excepthook__: Callable[[_ExceptHookArgs], object]
175
ExceptHookArgs = _ExceptHookArgs
176
177
class Timer(Thread):
0 commit comments