Determines whether the specified path is on a Windows Dev Drive.
(path)
| 867 | try: |
| 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 |
| 875 | except ImportError: |
| 876 | # Use genericpath.isdevdrive as imported above |
| 877 | pass |
nothing calls this directly
no test coverage detected
searching dependent graphs…