Jelle Zijlstra
2022-05-17 18:11:29 -07:00
committed by GitHub
co-authored by Shantanu Alex Waygood
parent ada3615a24
commit eab82c838a
18 changed files with 487 additions and 175 deletions
+19
View File
@@ -0,0 +1,19 @@
from _typeshed import Self
from types import TracebackType
from typing_extensions import final
__all__ = ("Timeout", "timeout", "timeout_at")
@final
class Timeout:
def __init__(self, when: float | None) -> None: ...
def when(self) -> float | None: ...
def reschedule(self, when: float | None) -> None: ...
def expired(self) -> bool: ...
async def __aenter__(self: Self) -> Self: ...
async def __aexit__(
self, exc_type: type[BaseException] | None, exc_val: BaseException | None, exc_tb: TracebackType | None
) -> None: ...
def timeout(delay: float | None) -> Timeout: ...
def timeout_at(when: float | None) -> Timeout: ...