mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-04 12:35:49 +08:00
a91c89ea94
Co-authored-by: hauntsaninja <> Co-authored-by: Akuli <akuviljanen17@gmail.com>
7 lines
99 B
Python
7 lines
99 B
Python
import sys
|
|
|
|
if sys.platform == "win32":
|
|
from ntpath import *
|
|
else:
|
|
from posixpath import *
|