| 2214 | } |
| 2215 | |
| 2216 | static PyObject *Py_ops_send(PyObject *self, PyObject *args) |
| 2217 | { |
| 2218 | wrapper->resetCommandLine(PyTuple_Size(args), 1, args); |
| 2219 | |
| 2220 | if (OPS_send() < 0) { |
| 2221 | opserr<<(void*)0; |
| 2222 | return NULL; |
| 2223 | } |
| 2224 | |
| 2225 | return wrapper->getResults(); |
| 2226 | } |
| 2227 | |
| 2228 | static PyObject *Py_ops_recv(PyObject *self, PyObject *args) |
| 2229 | { |
nothing calls this directly
no test coverage detected