Skip to content

Commit a7fc8ef

Browse files
committed
fix ir
1 parent 702aaf2 commit a7fc8ef

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
@@ -223,8 +223,7 @@ def f(b: bytes) -> bytes:
223223
return b.rjust(6)
224224
[out]
225225
def f(b):
226-
b :: bytes
227-
r0 :: bytes
226+
b, r0 :: bytes
228227
L0:
229228
r0 = CPyBytes_RjustDefaultFill(b, 12)
230229
return r0
@@ -245,8 +244,7 @@ def f(b: bytes) -> bytes:
245244
return b.ljust(7)
246245
[out]
247246
def f(b):
248-
b :: bytes
249-
r0 :: bytes
247+
b, r0 :: bytes
250248
L0:
251249
r0 = CPyBytes_LjustDefaultFill(b, 14)
252250
return r0

0 commit comments

Comments
 (0)