(self)
| 631 | ) |
| 632 | |
| 633 | def test_dict_update(self) -> None: |
| 634 | self.assert_emit( |
| 635 | CallC( |
| 636 | str(dict_update_op.c_function_name), |
| 637 | [self.d, self.o], |
| 638 | dict_update_op.return_type, |
| 639 | dict_update_op.steals, |
| 640 | dict_update_op.is_borrowed, |
| 641 | dict_update_op.error_kind, |
| 642 | 1, |
| 643 | ), |
| 644 | """cpy_r_r0 = CPyDict_Update(cpy_r_d, cpy_r_o);""", |
| 645 | ) |
| 646 | |
| 647 | def test_new_dict(self) -> None: |
| 648 | self.assert_emit( |
nothing calls this directly
no test coverage detected