pycurl: Add CurlMulti.setopt() (#8315)

This commit is contained in:
唐翔昊
2022-07-19 02:02:28 +08:00
committed by GitHub
parent 8af41720b6
commit 341057105f

View File

@@ -39,6 +39,7 @@ class CurlMulti:
def close(self) -> None: ...
def add_handle(self, obj: Curl) -> None: ...
def remove_handle(self, obj: Curl) -> None: ...
def setopt(self, option: int, value: Any) -> None: ...
def perform(self) -> tuple[Any, int]: ...
def fdset(self) -> tuple[list[Any], list[Any], list[Any]]: ...
def select(self, timeout: float = ...) -> int: ...