Staging
v0.5.1
Revision d9193c67d66c63e329d01cea009bace2ae67480e authored by cvs2svn on 15 February 1994, 16:04:53 UTC, committed by cvs2svn on 15 February 1994, 16:04:53 UTC
1 parent 094183e
Raw File
ospath.py
# 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 *
back to top