Skip to content

Commit a0c147b

Browse files
committed
fix ir
1 parent ed05c00 commit a0c147b

File tree

1 file changed

+1
-1
lines changed
  • mypyc/test-data/fixtures

1 file changed

+1
-1
lines changed

mypyc/test-data/fixtures/ir.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ def __lt__(self, n: int) -> bool: pass
8181
def __gt__(self, n: int) -> bool: pass
8282
def __le__(self, n: int) -> bool: pass
8383
def __ge__(self, n: int) -> bool: pass
84+
def to_bytes(self, length: int, order: Literal["small", "big"], signed: bool = False) -> bytes: pass
8485

8586
class str:
8687
@overload
@@ -123,7 +124,6 @@ def removeprefix(self, prefix: str, /) -> str: ...
123124
def removesuffix(self, suffix: str, /) -> str: ...
124125
def islower(self) -> bool: ...
125126
def count(self, substr: str, start: Optional[int] = None, end: Optional[int] = None) -> int: pass
126-
def to_bytes(self, length: int, order: Literal["small", "big"], signed: bool = False) -> bytes: pass
127127

128128
class float:
129129
def __init__(self, x: object) -> None: pass

0 commit comments

Comments
 (0)