| 442 | } |
| 443 | |
| 444 | static PyObject *Py_ops_system(PyObject *self, PyObject *args) |
| 445 | { |
| 446 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 447 | |
| 448 | if (OPS_System() < 0) { |
| 449 | opserr<<(void*)0; |
| 450 | return NULL; |
| 451 | } |
| 452 | |
| 453 | return wrapper->getResults(); |
| 454 | } |
| 455 | |
| 456 | static PyObject *Py_ops_numberer(PyObject *self, PyObject *args) |
| 457 | { |
nothing calls this directly
no test coverage detected