Lines Matching refs:fastargs
19 PyObject * const *fastargs;
31 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 8, 0, argsbuf);
32 if (!fastargs) {
35 database = fastargs[0];
39 if (fastargs[1]) {
40 if (PyFloat_CheckExact(fastargs[1])) {
41 timeout = PyFloat_AS_DOUBLE(fastargs[1]);
45 timeout = PyFloat_AsDouble(fastargs[1]);
54 if (fastargs[2]) {
55 detect_types = _PyLong_AsInt(fastargs[2]);
63 if (fastargs[3]) {
64 if (!isolation_level_converter(fastargs[3], &isolation_level)) {
71 if (fastargs[4]) {
72 check_same_thread = _PyLong_AsInt(fastargs[4]);
80 if (fastargs[5]) {
81 factory = fastargs[5];
86 if (fastargs[6]) {
87 cache_size = _PyLong_AsInt(fastargs[6]);
95 uri = PyObject_IsTrue(fastargs[7]);