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 8797b7f commit f43d260Copy full SHA for f43d260
mypyc/test-data/fixtures/ir.py
@@ -176,8 +176,8 @@ def __getitem__(self, i: slice) -> bytes: ...
176
def join(self, x: Iterable[object]) -> bytes: ...
177
def decode(self, encoding: str=..., errors: str=...) -> str: ...
178
def __iter__(self) -> Iterator[int]: ...
179
- def ljust(self, width: int, fillchar: bytes) -> bytes: ...
180
- 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: ...
181
182
class bytearray:
183
@overload
0 commit comments