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

Method is_junction

Lib/pathlib/__init__.py:709–713  ·  view source on GitHub ↗

Whether this path is a junction.

(self)

Source from the content-addressed store, hash-verified

707 return os.path.islink(self)
708
709 def is_junction(self):
710 """
711 Whether this path is a junction.
712 """
713 return os.path.isjunction(self)
714
715 def is_block_device(self):
716 """

Callers 6

_deleteMethod · 0.95
walkFunction · 0.45
check_entryMethod · 0.45
test_is_junction_trueMethod · 0.45

Calls

no outgoing calls

Tested by 4

check_entryMethod · 0.36
test_is_junction_trueMethod · 0.36