| 370 | } |
| 371 | |
| 372 | static PyObject *Py_ops_node(PyObject *self, PyObject *args) |
| 373 | { |
| 374 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 375 | |
| 376 | if (OPS_Node() < 0) { |
| 377 | opserr<<(void*)0; |
| 378 | return NULL; |
| 379 | } |
| 380 | |
| 381 | return wrapper->getResults(); |
| 382 | } |
| 383 | |
| 384 | static PyObject *Py_ops_fix(PyObject *self, PyObject *args) |
| 385 | { |
nothing calls this directly
no test coverage detected