Determines whether the specified path is on a Windows Dev Drive.
(path)
| 860 | try: |
| 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 |
| 868 | except ImportError: |
| 869 | # Use genericpath.isdevdrive as imported above |
| 870 | pass |
nothing calls this directly
no test coverage detected