HomeSort by relevance Sort by last modified time
    Searched full:fast_args (Results 1 - 1 of 1) sorted by null

  /external/python/cpython3/Modules/
_posixsubprocess.c 549 PyObject *process_args, *converted_args = NULL, *fast_args = NULL; local
625 fast_args = PySequence_Fast(process_args, "argv must be a tuple");
626 if (fast_args == NULL)
628 num_args = PySequence_Fast_GET_SIZE(fast_args);
634 borrowed_arg = PySequence_Fast_GET_ITEM(fast_args, arg_num);
642 Py_CLEAR(fast_args);
744 Py_XDECREF(fast_args);

Completed in 1434 milliseconds