mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-01 21:50:21 +08:00
[stdlib] Add more default values (#14632)
This commit is contained in:
+2
-2
@@ -31,8 +31,8 @@ if sys.version_info < (3, 11):
|
||||
|
||||
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 b2a_hex(data: ReadableBuffer, sep: str | bytes = ..., bytes_per_sep: int = 1) -> bytes: ...
|
||||
def hexlify(data: ReadableBuffer, sep: str | bytes = ..., bytes_per_sep: int = 1) -> bytes: ...
|
||||
def a2b_hex(hexstr: _AsciiBuffer, /) -> bytes: ...
|
||||
def unhexlify(hexstr: _AsciiBuffer, /) -> bytes: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user