Lines Matching defs:nargs
48 pysqlite_cursor_execute(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)
54 if (!_PyArg_CheckPositional("execute", nargs, 1, 2)) {
65 if (nargs < 2) {
90 pysqlite_cursor_executemany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)
96 if (!_PyArg_CheckPositional("executemany", nargs, 2, 2)) {
186 pysqlite_cursor_fetchmany(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
192 Py_ssize_t noptargs = nargs + (kwnames ? PyTuple_GET_SIZE(kwnames) : 0) - 0;
195 args = _PyArg_UnpackKeywords(args, nargs, NULL, kwnames, &_parser, 0, 1, 0, argsbuf);
254 pysqlite_cursor_setoutputsize(pysqlite_Cursor *self, PyObject *const *args, Py_ssize_t nargs)
260 if (!_PyArg_CheckPositional("setoutputsize", nargs, 1, 2)) {
264 if (nargs < 2) {