stdlib: Add bytes defaults (#9660)

This commit is contained in:
Alex Waygood
2023-02-03 00:01:54 +00:00
committed by GitHub
parent f1aede7162
commit 100cd62373
8 changed files with 34 additions and 34 deletions

View File

@@ -45,7 +45,7 @@ def a85encode(
b: ReadableBuffer, *, foldspaces: bool = False, wrapcol: int = 0, pad: bool = False, adobe: bool = False
) -> bytes: ...
def a85decode(
b: str | ReadableBuffer, *, foldspaces: bool = False, adobe: bool = False, ignorechars: bytearray | bytes = ...
b: str | ReadableBuffer, *, foldspaces: bool = False, adobe: bool = False, ignorechars: bytearray | bytes = b" \t\n\r\x0b"
) -> bytes: ...
def b85encode(b: ReadableBuffer, pad: bool = False) -> bytes: ...
def b85decode(b: str | ReadableBuffer) -> bytes: ...