Lines Matching defs:fastargs
55 PyObject * const *fastargs;
63 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 4, 0, argsbuf);
64 if (!fastargs) {
67 nameobj = fastargs[0];
71 if (fastargs[1]) {
72 if (!PyUnicode_Check(fastargs[1])) {
73 _PyArg_BadArgument("FileIO", "argument 'mode'", "str", fastargs[1]);
77 mode = PyUnicode_AsUTF8AndSize(fastargs[1], &mode_length);
89 if (fastargs[2]) {
90 closefd = _PyLong_AsInt(fastargs[2]);
98 opener = fastargs[3];