MCPcopy Index your code
hub / github.com/python/cpython / readlink

Method readlink

Lib/pathlib/__init__.py:1169–1173  ·  view source on GitHub ↗

Return the path to which the symbolic link points.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers 9

clone_testbedFunction · 0.45
copyfileFunction · 0.45
_copytreeFunction · 0.45
moveFunction · 0.45
gettarinfoMethod · 0.45
lookupmoduleMethod · 0.45
_follow_symlinksFunction · 0.45
_copy_from_symlinkMethod · 0.45
checkEnvironmentFunction · 0.45

Calls 2

with_segmentsMethod · 0.45

Tested by

no test coverage detected