We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 173dccb commit 5adfee5Copy full SHA for 5adfee5
mypyc/test-data/fixtures/ir.py
@@ -174,8 +174,8 @@ def __getitem__(self, i: slice) -> bytes: ...
174
def join(self, x: Iterable[object]) -> bytes: ...
175
def decode(self, encoding: str=..., errors: str=...) -> str: ...
176
def __iter__(self) -> Iterator[int]: ...
177
- def ljust(self, width: int, fillchar: bytes) -> bytes: ...
178
- def rjust(self, width: int, fillchar: bytes) -> bytes: ...
+ def ljust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
+ def rjust(self, width: int, fillchar: bytes | bytearray = b" ") -> bytes: ...
179
180
class bytearray:
181
@overload
0 commit comments