| 2178 | } |
| 2179 | |
| 2180 | static PyObject *Py_ops_getPID(PyObject *self, PyObject *args) |
| 2181 | { |
| 2182 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2183 | |
| 2184 | if (OPS_getPID() < 0) { |
| 2185 | opserr<<(void*)0; |
| 2186 | return NULL; |
| 2187 | } |
| 2188 | |
| 2189 | return wrapper->getResults(); |
| 2190 | } |
| 2191 | |
| 2192 | static PyObject *Py_ops_getNP(PyObject *self, PyObject *args) |
| 2193 | { |
nothing calls this directly
no test coverage detected