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

Method is_junction

Lib/pathlib/__init__.py:907–911  ·  view source on GitHub ↗

Whether this path is a junction.

(self)

Source from the content-addressed store, hash-verified

905 return os.path.islink(self)
906
907 def is_junction(self):
908 """
909 Whether this path is a junction.
910 """
911 return os.path.isjunction(self)
912
913 def is_block_device(self):
914 """

Callers 6

_deleteMethod · 0.95
walkFunction · 0.80
test_is_junction_trueMethod · 0.80
check_entryMethod · 0.80

Calls

no outgoing calls

Tested by 4

test_is_junction_trueMethod · 0.64
check_entryMethod · 0.64