| 550 | } |
| 551 | |
| 552 | static PyObject *Py_ops_fiber(PyObject *self, PyObject *args) |
| 553 | { |
| 554 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 555 | |
| 556 | if (OPS_Fiber() < 0) { |
| 557 | opserr<<(void*)0; |
| 558 | return NULL; |
| 559 | } |
| 560 | |
| 561 | return wrapper->getResults(); |
| 562 | } |
| 563 | |
| 564 | static PyObject *Py_ops_patch(PyObject *self, PyObject *args) |
| 565 | { |
nothing calls this directly
no test coverage detected