Return the group name of the file gid.
(self, *, follow_symlinks=True)
| 954 | |
| 955 | if grp: |
| 956 | def group(self, *, follow_symlinks=True): |
| 957 | """ |
| 958 | Return the group name of the file gid. |
| 959 | """ |
| 960 | gid = self.stat(follow_symlinks=follow_symlinks).st_gid |
| 961 | return grp.getgrgid(gid).gr_name |
| 962 | else: |
| 963 | def group(self, *, follow_symlinks=True): |
| 964 | """ |