MCPcopy
hub / github.com/cool-RR/PySnooper / group

Method group

tests/mini_toolbox/pathlib.py:1368–1373  ·  view source on GitHub ↗

Return the group name of the file gid.

(self)

Source from the content-addressed store, hash-verified

1366 return pwd.getpwuid(self.stat().st_uid).pw_name
1367
1368 def group(self):
1369 """
1370 Return the group name of the file gid.
1371 """
1372 import grp
1373 return grp.getgrgid(self.stat().st_gid).gr_name
1374
1375 def open(self, mode='r', buffering=-1, encoding=None,
1376 errors=None, newline=None):

Callers 7

setup.pyFile · 0.45
checkMethod · 0.45
_check_preambleMethod · 0.45
event_nameMethod · 0.45
verify_normalizeFunction · 0.45

Calls 1

statMethod · 0.95

Tested by 1