| 334 | } |
| 335 | |
| 336 | static PyObject *Py_ops_wipe(PyObject *self, PyObject *args) |
| 337 | { |
| 338 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 339 | |
| 340 | if (OPS_wipe() < 0) { |
| 341 | opserr<<(void*)0; |
| 342 | return NULL; |
| 343 | } |
| 344 | |
| 345 | return wrapper->getResults(); |
| 346 | } |
| 347 | |
| 348 | static PyObject *Py_ops_wipeReliability(PyObject *self, PyObject *args) |
| 349 | { |
nothing calls this directly
no test coverage detected