Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_posixsubprocess.c618 PyObject *process_args, *converted_args = NULL, *fast_args = NULL; in subprocess_fork_exec() local
717 converted_args = PyTuple_New(num_args); in subprocess_fork_exec()
718 if (converted_args == NULL) in subprocess_fork_exec()
729 PyTuple_SET_ITEM(converted_args, arg_num, converted_arg); in subprocess_fork_exec()
732 argv = _PySequence_BytesToCharpArray(converted_args); in subprocess_fork_exec()
733 Py_CLEAR(converted_args); in subprocess_fork_exec()
919 Py_XDECREF(converted_args); in subprocess_fork_exec()