mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
9 lines
186 B
Python
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__
|