mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
Stdlib: correct many parameter names (#9815)
This commit is contained in:
@@ -94,8 +94,8 @@ else:
|
||||
|
||||
_create_default_https_context: Callable[..., SSLContext]
|
||||
|
||||
def RAND_bytes(__num: int) -> bytes: ...
|
||||
def RAND_pseudo_bytes(__num: int) -> tuple[bytes, bool]: ...
|
||||
def RAND_bytes(__n: int) -> bytes: ...
|
||||
def RAND_pseudo_bytes(__n: int) -> tuple[bytes, bool]: ...
|
||||
def RAND_status() -> bool: ...
|
||||
def RAND_egd(path: str) -> None: ...
|
||||
def RAND_add(__string: str | ReadableBuffer, __entropy: float) -> None: ...
|
||||
@@ -470,7 +470,7 @@ class MemoryBIO:
|
||||
pending: int
|
||||
eof: bool
|
||||
def read(self, __size: int = -1) -> bytes: ...
|
||||
def write(self, __buf: ReadableBuffer) -> int: ...
|
||||
def write(self, __b: ReadableBuffer) -> int: ...
|
||||
def write_eof(self) -> None: ...
|
||||
|
||||
@final
|
||||
|
||||
Reference in New Issue
Block a user