Lines Matching refs:fastargs
32 PyObject * const *fastargs;
37 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 0, 0, argsbuf);
38 if (!fastargs) {
44 loop = fastargs[0];
312 PyObject * const *fastargs;
320 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 1, 0, argsbuf);
321 if (!fastargs) {
324 coro = fastargs[0];
328 if (fastargs[1]) {
329 loop = fastargs[1];
334 if (fastargs[2]) {
335 name = fastargs[2];
340 context = fastargs[3];