mirror of https://github.com/python/cpython
Initial revision
This commit is contained in:
parent
715a653152
commit
6da6aebfdb
|
@ -0,0 +1,15 @@
|
||||||
|
# ospath.py is to {posix,mac}path.py what os.py is to modules {posix,mac}
|
||||||
|
|
||||||
|
try:
|
||||||
|
import posix
|
||||||
|
name = 'posix'
|
||||||
|
del posix
|
||||||
|
except ImportError:
|
||||||
|
import mac
|
||||||
|
name = 'mac'
|
||||||
|
del mac
|
||||||
|
|
||||||
|
if name == 'posix':
|
||||||
|
from posixpath import *
|
||||||
|
elif name == 'mac':
|
||||||
|
from macpath import *
|
Loading…
Reference in New Issue