Return the group name of the file gid.
(self)
| 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): |