Lines Matching refs:group
789 group (POSIX only)
813 pass_fds=(), *, user=None, group=None, extra_groups=None,
899 if group is not None:
901 raise ValueError("The 'group' parameter is not supported on the "
904 elif isinstance(group, str):
908 raise ValueError("The group parameter cannot be a string "
911 gid = grp.getgrnam(group).gr_gid
912 elif isinstance(group, int):
913 gid = group
916 .format(type(group)))