Stdlib: correct many parameter names (#9815)

This commit is contained in:
Alex Waygood
2023-03-04 09:53:12 +00:00
committed by GitHub
parent 4b755c7034
commit 257e287fec
30 changed files with 382 additions and 353 deletions

View File

@@ -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