mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
stdlib: Add bytes defaults (#9660)
This commit is contained in:
@@ -132,10 +132,10 @@ def diff_bytes(
|
||||
dfunc: Callable[[Sequence[str], Sequence[str], str, str, str, str, int, str], Iterator[str]],
|
||||
a: Iterable[bytes | bytearray],
|
||||
b: Iterable[bytes | bytearray],
|
||||
fromfile: bytes | bytearray = ...,
|
||||
tofile: bytes | bytearray = ...,
|
||||
fromfiledate: bytes | bytearray = ...,
|
||||
tofiledate: bytes | bytearray = ...,
|
||||
fromfile: bytes | bytearray = b"",
|
||||
tofile: bytes | bytearray = b"",
|
||||
fromfiledate: bytes | bytearray = b"",
|
||||
tofiledate: bytes | bytearray = b"",
|
||||
n: int = 3,
|
||||
lineterm: bytes | bytearray = ...,
|
||||
lineterm: bytes | bytearray = b"\n",
|
||||
) -> Iterator[bytes]: ...
|
||||
|
||||
Reference in New Issue
Block a user