| 773 | } |
| 774 | |
| 775 | static PyObject *Py_ops_remove(PyObject *self, PyObject *args) |
| 776 | { |
| 777 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 778 | |
| 779 | if (OPS_removeObject() < 0) { |
| 780 | opserr<<(void*)0; |
| 781 | return NULL; |
| 782 | } |
| 783 | |
| 784 | return wrapper->getResults(); |
| 785 | } |
| 786 | |
| 787 | static PyObject *Py_ops_mass(PyObject *self, PyObject *args) |
| 788 | { |
nothing calls this directly
no test coverage detected