Like stat(), except if the path points to a symlink, the symlink's status information is returned, rather than its target's.
(self)
| 1156 | os.rmdir(self) |
| 1157 | |
| 1158 | def lstat(self): |
| 1159 | """ |
| 1160 | Like stat(), except if the path points to a symlink, the symlink's |
| 1161 | status information is returned, rather than its target's. |
| 1162 | """ |
| 1163 | return self.stat(follow_symlinks=False) |
| 1164 | |
| 1165 | def rename(self, target): |
| 1166 | """ |
no test coverage detected