(self)
| 452 | ) |
| 453 | |
| 454 | def test_list_append(self) -> None: |
| 455 | self.assert_emit( |
| 456 | CallC( |
| 457 | str(list_append_op.c_function_name), |
| 458 | [self.l, self.o], |
| 459 | list_append_op.return_type, |
| 460 | list_append_op.steals, |
| 461 | list_append_op.is_borrowed, |
| 462 | list_append_op.error_kind, |
| 463 | 1, |
| 464 | ), |
| 465 | """cpy_r_r0 = PyList_Append(cpy_r_l, cpy_r_o);""", |
| 466 | ) |
| 467 | |
| 468 | def test_get_attr(self) -> None: |
| 469 | self.assert_emit( |
nothing calls this directly
no test coverage detected