File: os_utils.py

package info (click to toggle)
pystac 1.13.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 19,904 kB
  • sloc: python: 24,370; makefile: 124; sh: 7
file content (8 lines) | stat: -rw-r--r-- 173 bytes parent folder | download
1
2
3
4
5
6
7
8
import os
import sys


def path_includes_drive_letter() -> bool:
    return (
        sys.version_info.major >= 3 and sys.version_info.minor >= 13 and os.name == "nt"
    )