Files
typeshed/stdlib/os/path.pyi
Shantanu a91c89ea94 various path stubs: re-export to reduce duplication (#5382)
Co-authored-by: hauntsaninja <>
Co-authored-by: Akuli <akuviljanen17@gmail.com>
2021-05-10 22:27:13 -07:00

7 lines
99 B
Python

import sys
if sys.platform == "win32":
from ntpath import *
else:
from posixpath import *