Skip to content

Commit d4b42c5

Browse files
committed
fix ir
1 parent 284e368 commit d4b42c5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

mypyc/test-data/irbuild-bytes.test

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,7 @@ def f(b: bytes) -> bytes:
191191
return b.rjust(6)
192192
[out]
193193
def f(b):
194-
b :: bytes
195-
r0 :: bytes
194+
b, r0 :: bytes
196195
L0:
197196
r0 = CPyBytes_RjustDefaultFill(b, 12)
198197
return r0
@@ -213,8 +212,7 @@ def f(b: bytes) -> bytes:
213212
return b.ljust(7)
214213
[out]
215214
def f(b):
216-
b :: bytes
217-
r0 :: bytes
215+
b, r0 :: bytes
218216
L0:
219217
r0 = CPyBytes_LjustDefaultFill(b, 14)
220218
return r0

0 commit comments

Comments
 (0)