| 88 | |
| 89 | |
| 90 | static PyObject * |
| 91 | PLy_plan_cursor(PyObject *self, PyObject *args) |
| 92 | { |
| 93 | PyObject *planargs = NULL; |
| 94 | |
| 95 | if (!PyArg_ParseTuple(args, "|O", &planargs)) |
| 96 | return NULL; |
| 97 | |
| 98 | return PLy_cursor_plan(self, planargs); |
| 99 | } |
| 100 | |
| 101 | |
| 102 | static PyObject * |
nothing calls this directly
no test coverage detected