Use PEP 570 syntax in stdlib (#11250)

This commit is contained in:
Shantanu
2024-03-09 14:50:16 -08:00
committed by GitHub
parent 63737acac6
commit 470a13ab09
139 changed files with 2412 additions and 2371 deletions
+13 -13
View File
@@ -6,31 +6,31 @@ from typing_extensions import TypeAlias
# or ASCII-only strings.
_AsciiBuffer: TypeAlias = str | ReadableBuffer
def a2b_uu(__data: _AsciiBuffer) -> bytes: ...
def b2a_uu(__data: ReadableBuffer, *, backtick: bool = False) -> bytes: ...
def a2b_uu(data: _AsciiBuffer, /) -> bytes: ...
def b2a_uu(data: ReadableBuffer, /, *, backtick: bool = False) -> bytes: ...
if sys.version_info >= (3, 11):
def a2b_base64(__data: _AsciiBuffer, *, strict_mode: bool = False) -> bytes: ...
def a2b_base64(data: _AsciiBuffer, /, *, strict_mode: bool = False) -> bytes: ...
else:
def a2b_base64(__data: _AsciiBuffer) -> bytes: ...
def a2b_base64(data: _AsciiBuffer, /) -> bytes: ...
def b2a_base64(__data: ReadableBuffer, *, newline: bool = True) -> bytes: ...
def b2a_base64(data: ReadableBuffer, /, *, newline: bool = True) -> bytes: ...
def a2b_qp(data: _AsciiBuffer, header: bool = False) -> bytes: ...
def b2a_qp(data: ReadableBuffer, quotetabs: bool = False, istext: bool = True, header: bool = False) -> bytes: ...
if sys.version_info < (3, 11):
def a2b_hqx(__data: _AsciiBuffer) -> bytes: ...
def rledecode_hqx(__data: ReadableBuffer) -> bytes: ...
def rlecode_hqx(__data: ReadableBuffer) -> bytes: ...
def b2a_hqx(__data: ReadableBuffer) -> bytes: ...
def a2b_hqx(data: _AsciiBuffer, /) -> bytes: ...
def rledecode_hqx(data: ReadableBuffer, /) -> bytes: ...
def rlecode_hqx(data: ReadableBuffer, /) -> bytes: ...
def b2a_hqx(data: ReadableBuffer, /) -> bytes: ...
def crc_hqx(__data: ReadableBuffer, __crc: int) -> int: ...
def crc32(__data: ReadableBuffer, __crc: int = 0) -> int: ...
def crc_hqx(data: ReadableBuffer, crc: int, /) -> int: ...
def crc32(data: ReadableBuffer, crc: int = 0, /) -> int: ...
def b2a_hex(data: ReadableBuffer, sep: str | bytes = ..., bytes_per_sep: int = ...) -> bytes: ...
def hexlify(data: ReadableBuffer, sep: str | bytes = ..., bytes_per_sep: int = ...) -> bytes: ...
def a2b_hex(__hexstr: _AsciiBuffer) -> bytes: ...
def unhexlify(__hexstr: _AsciiBuffer) -> bytes: ...
def a2b_hex(hexstr: _AsciiBuffer, /) -> bytes: ...
def unhexlify(hexstr: _AsciiBuffer, /) -> bytes: ...
class Error(ValueError): ...
class Incomplete(Exception): ...