Files
typeshed/stdlib/os/path.pyi

9 lines
186 B
Python

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