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 d3d5b46 commit a0dbc81Copy full SHA for a0dbc81
mypyc/test-data/fixtures/ir.py
@@ -173,8 +173,8 @@ def __getitem__(self, i: slice) -> bytes: ...
173
def join(self, x: Iterable[object]) -> bytes: ...
174
def decode(self, x: str=..., y: str=...) -> str: ...
175
def __iter__(self) -> Iterator[int]: ...
176
- def ljust(self, width: int, fillchar: bytes) -> bytes: ...
177
- 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: ...
178
179
class bytearray:
180
@overload
0 commit comments