| 671 | } |
| 672 | |
| 673 | int MaterialPy::sequence_contains(PyObject* self, PyObject* key) |
| 674 | { |
| 675 | return PyDict_Contains(static_cast<MaterialPy*>(self)->getProperties().ptr(), key); |
| 676 | } |
| 677 | |
| 678 | PyObject* MaterialPy::mapping_subscript(PyObject* self, PyObject* key) |
| 679 | { |
nothing calls this directly
no test coverage detected