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

Function isdevdrive

Lib/ntpath.py:862–867  ·  view source on GitHub ↗

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

(path)

Source from the content-addressed store, hash-verified

860try:
861 from nt import _path_isdevdrive
862 def isdevdrive(path):
863 """Determines whether the specified path is on a Windows Dev Drive."""
864 try:
865 return _path_isdevdrive(abspath(path))
866 except OSError:
867 return False
868except ImportError:
869 # Use genericpath.isdevdrive as imported above
870 pass

Callers

nothing calls this directly

Calls 2

_path_isdevdriveFunction · 0.90
abspathFunction · 0.70

Tested by

no test coverage detected