mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-28 12:32:20 +08:00
Use lowercase tuple where possible (#6170)
This commit is contained in:
@@ -14,7 +14,7 @@ def global_cleanup() -> None: ...
|
||||
|
||||
version: str
|
||||
|
||||
def version_info() -> Tuple[int, str, int, str, int, str, int, str, Tuple[str, ...], Any, int, Any]: ...
|
||||
def version_info() -> tuple[int, str, int, str, int, str, int, str, Tuple[str, ...], Any, int, Any]: ...
|
||||
|
||||
class error(Exception): ...
|
||||
|
||||
@@ -38,11 +38,11 @@ class CurlMulti(object):
|
||||
def close(self) -> None: ...
|
||||
def add_handle(self, obj: Curl) -> None: ...
|
||||
def remove_handle(self, obj: Curl) -> None: ...
|
||||
def perform(self) -> Tuple[Any, int]: ...
|
||||
def fdset(self) -> Tuple[list[Any], list[Any], list[Any]]: ...
|
||||
def perform(self) -> tuple[Any, int]: ...
|
||||
def fdset(self) -> tuple[list[Any], list[Any], list[Any]]: ...
|
||||
def select(self, timeout: float = ...) -> int: ...
|
||||
def info_read(self, max_objects: int = ...) -> Tuple[int, list[Any], list[Any]]: ...
|
||||
def socket_action(self, sockfd: int, ev_bitmask: int) -> Tuple[int, int]: ...
|
||||
def info_read(self, max_objects: int = ...) -> tuple[int, list[Any], list[Any]]: ...
|
||||
def socket_action(self, sockfd: int, ev_bitmask: int) -> tuple[int, int]: ...
|
||||
|
||||
class CurlShare(object):
|
||||
def close(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user