Return the path to which the symbolic link points.
(self)
| 969 | |
| 970 | if hasattr(os, "readlink"): |
| 971 | def readlink(self): |
| 972 | """ |
| 973 | Return the path to which the symbolic link points. |
| 974 | """ |
| 975 | return self.with_segments(os.readlink(self)) |
| 976 | else: |
| 977 | def readlink(self): |
| 978 | """ |
no test coverage detected