Return the path to which the symbolic link points.
(self)
| 1167 | |
| 1168 | if hasattr(os, "readlink"): |
| 1169 | def readlink(self): |
| 1170 | """ |
| 1171 | Return the path to which the symbolic link points. |
| 1172 | """ |
| 1173 | return self.with_segments(os.readlink(self)) |
| 1174 | else: |
| 1175 | def readlink(self): |
| 1176 | """ |
no test coverage detected