Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
_delete
Method · 0.95
expect_file
Method · 0.95
walk
Function · 0.45
_fwalk
Function · 0.45
_islink
Function · 0.45
_copytree
Function · 0.45
_copy_from
Method · 0.45
stdlib_os.py
File · 0.45
Calls
1
islink
Method · 0.80
Tested by
1
expect_file
Method · 0.76