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

Function isdevdrive

Lib/ntpath.py:869–874  ·  view source on GitHub ↗

Determines whether the specified path is on a Windows Dev Drive.

(path)

Source from the content-addressed store, hash-verified

867try:
868 from nt import _path_isdevdrive
869 def isdevdrive(path):
870 """Determines whether the specified path is on a Windows Dev Drive."""
871 try:
872 return _path_isdevdrive(abspath(path))
873 except OSError:
874 return False
875except ImportError:
876 # Use genericpath.isdevdrive as imported above
877 pass

Callers

nothing calls this directly

Calls 1

abspathFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…