(self)
| 617 | ) |
| 618 | |
| 619 | def test_dict_set_item(self) -> None: |
| 620 | self.assert_emit( |
| 621 | CallC( |
| 622 | str(dict_set_item_op.c_function_name), |
| 623 | [self.d, self.o, self.o2], |
| 624 | dict_set_item_op.return_type, |
| 625 | dict_set_item_op.steals, |
| 626 | dict_set_item_op.is_borrowed, |
| 627 | dict_set_item_op.error_kind, |
| 628 | 1, |
| 629 | ), |
| 630 | """cpy_r_r0 = CPyDict_SetItem(cpy_r_d, cpy_r_o, cpy_r_o2);""", |
| 631 | ) |
| 632 | |
| 633 | def test_dict_update(self) -> None: |
| 634 | self.assert_emit( |
nothing calls this directly
no test coverage detected