| 660 | } |
| 661 | |
| 662 | Py_ssize_t MaterialPy::sequence_length(PyObject *self) |
| 663 | { |
| 664 | return static_cast<MaterialPy*>(self)->getProperties().size(); |
| 665 | } |
| 666 | |
| 667 | PyObject* MaterialPy::sequence_item(PyObject* self, Py_ssize_t item) |
| 668 | { |
nothing calls this directly
no test coverage detected