| 676 | } |
| 677 | |
| 678 | PyObject* MaterialPy::mapping_subscript(PyObject* self, PyObject* key) |
| 679 | { |
| 680 | Py::Dict dict = static_cast<MaterialPy*>(self)->getProperties(); |
| 681 | return Py::new_reference_to(dict.getItem(Py::Object(key))); |
| 682 | } |
nothing calls this directly
no test coverage detected