| 761 | } |
| 762 | |
| 763 | static PyObject *Py_ops_setTime(PyObject *self, PyObject *args) |
| 764 | { |
| 765 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 766 | |
| 767 | if (OPS_setTime() < 0) { |
| 768 | opserr<<(void*)0; |
| 769 | return NULL; |
| 770 | } |
| 771 | |
| 772 | return wrapper->getResults(); |
| 773 | } |
| 774 | |
| 775 | static PyObject *Py_ops_remove(PyObject *self, PyObject *args) |
| 776 | { |
nothing calls this directly
no test coverage detected