Return the result of the stat() system call on this path, like os.stat() does.
(self)
| 1352 | return obj |
| 1353 | |
| 1354 | def stat(self): |
| 1355 | """ |
| 1356 | Return the result of the stat() system call on this path, like |
| 1357 | os.stat() does. |
| 1358 | """ |
| 1359 | return self._accessor.stat(self) |
| 1360 | |
| 1361 | def owner(self): |
| 1362 | """ |
no outgoing calls
no test coverage detected