| 2166 | } |
| 2167 | |
| 2168 | static PyObject *Py_ops_setParameter(PyObject *self, PyObject *args) |
| 2169 | { |
| 2170 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2171 | |
| 2172 | if (OPS_setParameter() < 0) { |
| 2173 | opserr<<(void*)0; |
| 2174 | return NULL; |
| 2175 | } |
| 2176 | |
| 2177 | return wrapper->getResults(); |
| 2178 | } |
| 2179 | |
| 2180 | static PyObject *Py_ops_getPID(PyObject *self, PyObject *args) |
| 2181 | { |
nothing calls this directly
no test coverage detected