mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
stdlib: Add defaults for positional-only parameters (#9655)
This commit is contained in:
@@ -26,7 +26,7 @@ if sys.version_info < (3, 11):
|
||||
def b2a_hqx(__data: ReadableBuffer) -> bytes: ...
|
||||
|
||||
def crc_hqx(__data: ReadableBuffer, __crc: int) -> int: ...
|
||||
def crc32(__data: ReadableBuffer, __crc: int = ...) -> int: ...
|
||||
def crc32(__data: ReadableBuffer, __crc: int = 0) -> int: ...
|
||||
|
||||
if sys.version_info >= (3, 8):
|
||||
# sep must be str or bytes, not bytearray or any other buffer
|
||||
|
||||
Reference in New Issue
Block a user