| 941 | } |
| 942 | |
| 943 | static PyObject *Py_ops_getLoadFactor(PyObject *self, PyObject *args) |
| 944 | { |
| 945 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 946 | |
| 947 | if (OPS_getLoadFactor() < 0) { |
| 948 | opserr<<(void*)0; |
| 949 | return NULL; |
| 950 | } |
| 951 | |
| 952 | return wrapper->getResults(); |
| 953 | } |
| 954 | |
| 955 | static PyObject *Py_ops_build(PyObject *self, PyObject *args) |
| 956 | { |
nothing calls this directly
no test coverage detected