MCPcopy
hub / github.com/pytest-dev/pytest / owner

Method owner

src/_pytest/_py/path.py:220–226  ·  src/_pytest/_py/path.py::Stat.owner
(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

checked_callMethod · 0.80

Tested by

no test coverage detected