Home
last modified time | relevance | path

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

/third_party/python/Lib/
Dsubprocess.py759 pass_fds=(), *, user=None, group=None, extra_groups=None, argument
895 if extra_groups is not None:
900 elif isinstance(extra_groups, str):
904 for extra_group in extra_groups:
/third_party/python/Lib/test/
Dtest_subprocess.py1990 extra_groups=group_list)
2013 subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[-1])
2018 extra_groups=[2**64])
2023 extra_groups=[name_group])
2028 subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[])
/third_party/python/Doc/library/
Dsubprocess.rst343 extra_groups=None, user=None, umask=-1, \
582 If *extra_groups* is not ``None``, the setgroups() system call will be
584 Strings provided in *extra_groups* will be looked up via
/third_party/python/Misc/NEWS.d/
D3.10.0a2.rst305 in `user` (`group`, `extra_groups`) overflows `uid_t` (`gid_t`).
D3.10.0a4.rst266 :mod:`subprocess` *extra_groups* is now correctly passed into setgroups()
D3.10.0a1.rst1885 Fix a minor memory leak in :mod:`subprocess` module when extra_groups was
D3.9.0a1.rst3413 Added ``user``, ``group`` and ``extra_groups`` parameters to the