mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
binascii: fix arg names, mark positional-only args (#3754)
This commit is contained in:
@@ -15,31 +15,31 @@ else:
|
||||
_Bytes = bytes
|
||||
_Ascii = Union[bytes, str]
|
||||
|
||||
def a2b_uu(string: _Ascii) -> bytes: ...
|
||||
def a2b_uu(__data: _Ascii) -> bytes: ...
|
||||
if sys.version_info >= (3, 7):
|
||||
def b2a_uu(data: _Bytes, *, backtick: bool = ...) -> bytes: ...
|
||||
def b2a_uu(__data: _Bytes, *, backtick: bool = ...) -> bytes: ...
|
||||
else:
|
||||
def b2a_uu(data: _Bytes) -> bytes: ...
|
||||
def a2b_base64(string: _Ascii) -> bytes: ...
|
||||
def b2a_uu(__data: _Bytes) -> bytes: ...
|
||||
def a2b_base64(__data: _Ascii) -> bytes: ...
|
||||
if sys.version_info >= (3, 6):
|
||||
def b2a_base64(data: _Bytes, *, newline: bool = ...) -> bytes: ...
|
||||
def b2a_base64(__data: _Bytes, *, newline: bool = ...) -> bytes: ...
|
||||
else:
|
||||
def b2a_base64(data: _Bytes) -> bytes: ...
|
||||
def a2b_qp(string: _Ascii, header: bool = ...) -> bytes: ...
|
||||
def b2a_base64(__data: _Bytes) -> bytes: ...
|
||||
def a2b_qp(data: _Ascii, header: bool = ...) -> bytes: ...
|
||||
def b2a_qp(data: _Bytes, quotetabs: bool = ..., istext: bool = ..., header: bool = ...) -> bytes: ...
|
||||
def a2b_hqx(string: _Ascii) -> 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: ...
|
||||
def a2b_hqx(__data: _Ascii) -> 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: ...
|
||||
if sys.version_info >= (3, 8):
|
||||
def hexlify(data: bytes, sep: Union[str, bytes] = ..., bytes_per_sep: int = ...) -> bytes: ...
|
||||
else:
|
||||
def hexlify(data: _Bytes) -> bytes: ...
|
||||
def a2b_hex(hexstr: _Ascii) -> bytes: ...
|
||||
def unhexlify(hexlify: _Ascii) -> bytes: ...
|
||||
def hexlify(__data: _Bytes) -> bytes: ...
|
||||
def a2b_hex(__hexstr: _Ascii) -> bytes: ...
|
||||
def unhexlify(__hexstr: _Ascii) -> bytes: ...
|
||||
|
||||
class Error(ValueError): ...
|
||||
class Incomplete(Exception): ...
|
||||
|
||||
Reference in New Issue
Block a user