MCPcopy Index your code
hub / github.com/python/cpython / group

Method group

Lib/pathlib/__init__.py:1154–1159  ·  view source on GitHub ↗

Return the group name of the file gid.

(self, *, follow_symlinks=True)

Source from the content-addressed store, hash-verified

1152
1153 if grp:
1154 def group(self, *, follow_symlinks=True):
1155 """
1156 Return the group name of the file gid.
1157 """
1158 gid = self.stat(follow_symlinks=follow_symlinks).st_gid
1159 return grp.getgrgid(gid).gr_name
1160 else:
1161 def group(self, *, follow_symlinks=True):
1162 """

Callers 15

_parsegenMethod · 0.45
_parse_headersMethod · 0.45
_unquote_matchFunction · 0.45
decode_paramsFunction · 0.45
_encoded_words.pyFile · 0.45
get_atextFunction · 0.45
get_ttextFunction · 0.45
get_attrtextFunction · 0.45
get_extended_attrtextFunction · 0.45
_parse_makefileFunction · 0.45
parse_config_hFunction · 0.45
get_platformFunction · 0.45

Calls 2

statMethod · 0.95

Tested by 15

test_buffer_sizesMethod · 0.36
test_dump_ext_modulesMethod · 0.36
strtodFunction · 0.36
server_params_testFunction · 0.36
test_reprMethod · 0.36
test_listMethod · 0.36
test_list_pathsMethod · 0.36