| 151 | } |
| 152 | |
| 153 | PyObject* DocumentObjectPy::removeProperty(PyObject* args) |
| 154 | { |
| 155 | char* sName; |
| 156 | if (!PyArg_ParseTuple(args, "s", &sName)) { |
| 157 | return nullptr; |
| 158 | } |
| 159 | |
| 160 | bool ok = getDocumentObjectPtr()->removeDynamicProperty(sName); |
| 161 | return Py_BuildValue("O", (ok ? Py_True : Py_False)); |
| 162 | } |
| 163 | |
| 164 | PyObject* DocumentObjectPy::supportedProperties(PyObject* args) |
| 165 | { |
nothing calls this directly
no test coverage detected