| 100 | |
| 101 | |
| 102 | static PyObject * |
| 103 | PLy_plan_execute(PyObject *self, PyObject *args) |
| 104 | { |
| 105 | PyObject *list = NULL; |
| 106 | long limit = 0; |
| 107 | |
| 108 | if (!PyArg_ParseTuple(args, "|Ol", &list, &limit)) |
| 109 | return NULL; |
| 110 | |
| 111 | return PLy_spi_execute_plan(self, list, limit); |
| 112 | } |
| 113 | |
| 114 | |
| 115 | static PyObject * |
nothing calls this directly
no test coverage detected