22 lines
500 B
Python
22 lines
500 B
Python
from typing import Any
|
|
|
|
from .. import exceptions
|
|
|
|
TimeoutStateError = exceptions.TimeoutStateError
|
|
|
|
def current_time(): ...
|
|
|
|
class Timeout:
|
|
DEFAULT_TIMEOUT: Any
|
|
total: Any
|
|
def __init__(self, total=None, connect=..., read=...) -> None: ...
|
|
@classmethod
|
|
def from_float(cls, timeout): ...
|
|
def clone(self): ...
|
|
def start_connect(self): ...
|
|
def get_connect_duration(self): ...
|
|
@property
|
|
def connect_timeout(self): ...
|
|
@property
|
|
def read_timeout(self): ...
|