Searched refs:extra_groups (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Lib/ |
D | subprocess.py | 758 pass_fds=(), *, user=None, group=None, extra_groups=None, argument 879 if extra_groups is not None: 884 elif isinstance(extra_groups, str): 888 for extra_group in extra_groups:
|
/external/python/cpython3/Lib/test/ |
D | test_subprocess.py | 1903 extra_groups=group_list) 1926 subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[-1]) 1931 extra_groups=[2**64]) 1936 extra_groups=[name_group]) 1941 subprocess.check_call(ZERO_RETURN_CMD, extra_groups=[])
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.9.0b4.rst | 317 Fix a minor memory leak in :mod:`subprocess` module when extra_groups was
|
D | 3.9.1rc1.rst | 351 in `user` (`group`, `extra_groups`) overflows `uid_t` (`gid_t`).
|
D | 3.9.0a1.rst | 3413 Added ``user``, ``group`` and ``extra_groups`` parameters to the
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 343 extra_groups=None, user=None, umask=-1, \ 563 If *extra_groups* is not ``None``, the setgroups() system call will be 565 Strings provided in *extra_groups* will be looked up via
|