| 1073 | } |
| 1074 | |
| 1075 | static PyObject *Py_ops_save(PyObject *self, PyObject *args) |
| 1076 | { |
| 1077 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 1078 | |
| 1079 | if (OPS_save() < 0) { |
| 1080 | opserr<<(void*)0; |
| 1081 | return NULL; |
| 1082 | } |
| 1083 | |
| 1084 | return wrapper->getResults(); |
| 1085 | } |
| 1086 | |
| 1087 | static PyObject *Py_ops_restore(PyObject *self, PyObject *args) |
| 1088 | { |
nothing calls this directly
no test coverage detected