| 1228 | } |
| 1229 | |
| 1230 | static PyObject * |
| 1231 | construct_cursor(PyObject *self, PyObject *args) |
| 1232 | { |
| 1233 | UpsCursor *c = PyObject_New(UpsCursor, &UpsCursor_Type); |
| 1234 | if (!c) |
| 1235 | return (0); |
| 1236 | |
| 1237 | c->cursor = 0; |
| 1238 | return (cursor_create(c, args)); |
| 1239 | } |
| 1240 | |
| 1241 | static PyObject * |
| 1242 | cursor_create(UpsCursor *self, PyObject *args) |
nothing calls this directly
no test coverage detected