(self)
| 218 | |
| 219 | @property |
| 220 | def owner(self): |
| 221 | if iswin32: |
| 222 | raise NotImplementedError(class="st">"XXX win32") |
| 223 | import pwd |
| 224 | |
| 225 | entry = error.checked_call(pwd.getpwuid, self.uid) class="cm"># type:ignore[attr-defined,unused-ignore] |
| 226 | return entry[0] |
| 227 | |
| 228 | @property |
| 229 | def group(self): |
nothing calls this directly
no test coverage detected