massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / requests / requests / packages / urllib3 / util / timeout.pyi
1 from typing import Any
2
3 from .. import exceptions
4
5 TimeoutStateError = exceptions.TimeoutStateError
6
7 def current_time(): ...
8
9 class Timeout:
10     DEFAULT_TIMEOUT: Any
11     total: Any
12     def __init__(self, total=..., connect=..., read=...) -> None: ...
13     @classmethod
14     def from_float(cls, timeout): ...
15     def clone(self): ...
16     def start_connect(self): ...
17     def get_connect_duration(self): ...
18     @property
19     def connect_timeout(self): ...
20     @property
21     def read_timeout(self): ...