MCPcopy Index your code
hub / github.com/RustPython/RustPython / is_symlink

Method is_symlink

Lib/pathlib/__init__.py:703–707  ·  view source on GitHub ↗

Whether this path is a symbolic link.

(self)

Source from the content-addressed store, hash-verified

701 return os.path.ismount(self)
702
703 def is_symlink(self):
704 """
705 Whether this path is a symbolic link.
706 """
707 return os.path.islink(self)
708
709 def is_junction(self):
710 """

Callers 8

_deleteMethod · 0.95
expect_fileMethod · 0.95
walkFunction · 0.45
_fwalkFunction · 0.45
_islinkFunction · 0.45
_copytreeFunction · 0.45
_copy_fromMethod · 0.45
stdlib_os.pyFile · 0.45

Calls 1

islinkMethod · 0.80

Tested by 1

expect_fileMethod · 0.76