summaryrefslogtreecommitdiffstats
path: root/Lib/ospath.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/ospath.py')
-rw-r--r--Lib/ospath.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/Lib/ospath.py b/Lib/ospath.py
new file mode 100644
index 0000000..866d02e
--- /dev/null
+++ b/Lib/ospath.py
@@ -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 *