Home
last modified time | relevance | path

Searched refs:fast_args (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython3/Modules/
D_posixsubprocess.c562 PyObject *process_args, *converted_args = NULL, *fast_args = NULL; in subprocess_fork_exec() local
634 fast_args = PySequence_Fast(process_args, "argv must be a tuple"); in subprocess_fork_exec()
635 if (fast_args == NULL) in subprocess_fork_exec()
637 num_args = PySequence_Fast_GET_SIZE(fast_args); in subprocess_fork_exec()
643 if (PySequence_Fast_GET_SIZE(fast_args) != num_args) { in subprocess_fork_exec()
647 borrowed_arg = PySequence_Fast_GET_ITEM(fast_args, arg_num); in subprocess_fork_exec()
655 Py_CLEAR(fast_args); in subprocess_fork_exec()
752 Py_XDECREF(fast_args); in subprocess_fork_exec()