Lines Matching defs:fastargs
54 PyObject * const *fastargs;
62 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 1, 4, 0, argsbuf);
63 if (!fastargs) {
66 nameobj = fastargs[0];
70 if (fastargs[1]) {
71 if (!PyUnicode_Check(fastargs[1])) {
72 _PyArg_BadArgument("_WindowsConsoleIO", "argument 'mode'", "str", fastargs[1]);
76 mode = PyUnicode_AsUTF8AndSize(fastargs[1], &mode_length);
88 if (fastargs[2]) {
89 closefd = _PyLong_AsInt(fastargs[2]);
97 opener = fastargs[3];