stdlib: Add defaults for positional-only parameters (#9655)

This commit is contained in:
Alex Waygood
2023-02-01 21:44:08 +00:00
committed by GitHub
parent 35172c7aab
commit 1d7dda7fa1
30 changed files with 159 additions and 155 deletions

View File

@@ -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