Make the path absolute, resolving all symlinks on the way and also normalizing it.
(self, strict=False)
| 930 | return path |
| 931 | |
| 932 | def resolve(self, strict=False): |
| 933 | """ |
| 934 | Make the path absolute, resolving all symlinks on the way and also |
| 935 | normalizing it. |
| 936 | """ |
| 937 | |
| 938 | return self.with_segments(os.path.realpath(self, strict=strict)) |
| 939 | |
| 940 | if pwd: |
| 941 | def owner(self, *, follow_symlinks=True): |
no test coverage detected