Return the result of the stat() system call on this path, like os.stat() does.
(self, *, follow_symlinks=True)
| 1006 | return p |
| 1007 | |
| 1008 | def stat(self, *, follow_symlinks=True): |
| 1009 | """ |
| 1010 | Return the result of the stat() system call on this path, like |
| 1011 | os.stat() does. |
| 1012 | """ |
| 1013 | return os.stat(self, follow_symlinks=follow_symlinks) |
| 1014 | |
| 1015 | def owner(self): |
| 1016 | """ |
no outgoing calls
no test coverage detected