Return an os.lstat() tuple.
(self)
| 976 | return None |
| 977 | |
| 978 | def lstat(self) -> Stat: |
| 979 | """Return an os.lstat() tuple.""" |
| 980 | return Stat(self, error.checked_call(os.lstat, self.strpath)) |
| 981 | |
| 982 | def setmtime(self, mtime=None): |
| 983 | """Set modification time for the given path. if 'mtime' is None |
no test coverage detected