mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
Python 3.11 removals in stdlib (#6374)
Co-authored-by: Akuli <akuviljanen17@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
@@ -12,10 +12,13 @@ def a2b_base64(__data: str | bytes) -> bytes: ...
|
||||
def b2a_base64(__data: bytes, *, newline: bool = ...) -> bytes: ...
|
||||
def a2b_qp(data: str | bytes, header: bool = ...) -> bytes: ...
|
||||
def b2a_qp(data: bytes, quotetabs: bool = ..., istext: bool = ..., header: bool = ...) -> bytes: ...
|
||||
def a2b_hqx(__data: str | bytes) -> bytes: ...
|
||||
def rledecode_hqx(__data: bytes) -> bytes: ...
|
||||
def rlecode_hqx(__data: bytes) -> bytes: ...
|
||||
def b2a_hqx(__data: bytes) -> bytes: ...
|
||||
|
||||
if sys.version_info < (3, 11):
|
||||
def a2b_hqx(__data: str | bytes) -> bytes: ...
|
||||
def rledecode_hqx(__data: bytes) -> bytes: ...
|
||||
def rlecode_hqx(__data: bytes) -> bytes: ...
|
||||
def b2a_hqx(__data: bytes) -> bytes: ...
|
||||
|
||||
def crc_hqx(__data: bytes, __crc: int) -> int: ...
|
||||
def crc32(__data: bytes, __crc: int = ...) -> int: ...
|
||||
def b2a_hex(__data: bytes) -> bytes: ...
|
||||
|
||||
Reference in New Issue
Block a user