Searched refs:fast_args (Results 1 – 1 of 1) sorted by relevance
725 PyObject *process_args, *converted_args = NULL, *fast_args = NULL; in subprocess_fork_exec() local797 fast_args = PySequence_Fast(process_args, "argv must be a tuple"); in subprocess_fork_exec()798 if (fast_args == NULL) in subprocess_fork_exec()800 num_args = PySequence_Fast_GET_SIZE(fast_args); in subprocess_fork_exec()806 if (PySequence_Fast_GET_SIZE(fast_args) != num_args) { in subprocess_fork_exec()810 borrowed_arg = PySequence_Fast_GET_ITEM(fast_args, arg_num); in subprocess_fork_exec()818 Py_CLEAR(fast_args); in subprocess_fork_exec()1002 Py_XDECREF(fast_args); in subprocess_fork_exec()