Skip to content

Commit a3d6eb8

Browse files
committed
fix IR
1 parent 8f8a10e commit a3d6eb8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mypyc/test-data/irbuild-classes.test

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ L2:
303303
__main__.C = r27 :: type
304304
r33 = __main__.globals :: static
305305
r34 = 'C'
306-
r35 = CPyDict_SetItem(r33, r34, r27)
306+
r35 = PyDict_SetItem(r33, r34, r27)
307307
r36 = r35 >= 0 :: signed
308308
r37 = <error> :: object
309309
r38 = '__main__'
@@ -316,7 +316,7 @@ L2:
316316
__main__.S = r40 :: type
317317
r45 = __main__.globals :: static
318318
r46 = 'S'
319-
r47 = CPyDict_SetItem(r45, r46, r40)
319+
r47 = PyDict_SetItem(r45, r46, r40)
320320
r48 = r47 >= 0 :: signed
321321
r49 = __main__.C :: type
322322
r50 = __main__.S :: type
@@ -340,7 +340,7 @@ L2:
340340
__main__.D = r61 :: type
341341
r68 = __main__.globals :: static
342342
r69 = 'D'
343-
r70 = CPyDict_SetItem(r68, r69, r61)
343+
r70 = PyDict_SetItem(r68, r69, r61)
344344
r71 = r70 >= 0 :: signed
345345
return 1
346346

0 commit comments

Comments
 (0)