mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 21:46:42 +08:00
Fix a default in pycurl and update apt_dependencies (#9961)
Fix 1 default and update apt dependencies
This commit is contained in:
@@ -10,6 +10,6 @@ version = "7.45.2"
|
||||
# % pip install --compile --install-option="--with-openssl" pycurl
|
||||
# TODO: Test on Windows and/or MacOS once wheels are available.
|
||||
platforms = ["linux"]
|
||||
apt_dependencies = ["libcurl4-openssl-dev"]
|
||||
apt_dependencies = ["libcurl4-openssl-dev", "libssl-dev"]
|
||||
# No need to install on the CI. Leaving here as information for MacOS contributors.
|
||||
# brew_dependencies = ["openssl"]
|
||||
|
||||
@@ -39,7 +39,7 @@ class CurlMulti:
|
||||
def setopt(self, option: int, value: Incomplete) -> None: ...
|
||||
def perform(self) -> tuple[Incomplete, int]: ...
|
||||
def fdset(self) -> tuple[list[Incomplete], list[Incomplete], list[Incomplete]]: ...
|
||||
def select(self, timeout: float = ...) -> int: ...
|
||||
def select(self, timeout: float) -> int: ...
|
||||
def info_read(self, max_objects: int = ...) -> tuple[int, list[Incomplete], list[Incomplete]]: ...
|
||||
def socket_action(self, sockfd: int, ev_bitmask: int) -> tuple[int, int]: ...
|
||||
def assign(self, __sockfd: int, __socket: Incomplete) -> Incomplete: ...
|
||||
|
||||
Reference in New Issue
Block a user