| 562 | } |
| 563 | |
| 564 | static PyObject *Py_ops_patch(PyObject *self, PyObject *args) |
| 565 | { |
| 566 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 567 | |
| 568 | if (OPS_Patch() < 0) { |
| 569 | opserr<<(void*)0; |
| 570 | return NULL; |
| 571 | } |
| 572 | |
| 573 | return wrapper->getResults(); |
| 574 | } |
| 575 | |
| 576 | static PyObject *Py_ops_layer(PyObject *self, PyObject *args) |
| 577 | { |
nothing calls this directly
no test coverage detected