| 965 | } |
| 966 | |
| 967 | static PyObject *Py_ops_print(PyObject *self, PyObject *args) |
| 968 | { |
| 969 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 970 | |
| 971 | if (OPS_printModel() < 0) { |
| 972 | opserr<<(void*)0; |
| 973 | return NULL; |
| 974 | } |
| 975 | |
| 976 | return wrapper->getResults(); |
| 977 | } |
| 978 | |
| 979 | static PyObject *Py_ops_printA(PyObject *self, PyObject *args) |
| 980 | { |
nothing calls this directly
no test coverage detected