| 2130 | } |
| 2131 | |
| 2132 | static PyObject *Py_ops_parameter(PyObject *self, PyObject *args) |
| 2133 | { |
| 2134 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2135 | |
| 2136 | if (OPS_Parameter() < 0) { |
| 2137 | opserr<<(void*)0; |
| 2138 | return NULL; |
| 2139 | } |
| 2140 | |
| 2141 | return wrapper->getResults(); |
| 2142 | } |
| 2143 | |
| 2144 | static PyObject *Py_ops_addToParameter(PyObject *self, PyObject *args) |
| 2145 | { |
nothing calls this directly
no test coverage detected