summaryrefslogtreecommitdiffstats
path: root/Lib/imputil.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/imputil.py')
-rw-r--r--Lib/imputil.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/Lib/imputil.py b/Lib/imputil.py
index 600cfa5..a5fa6ea 100644
--- a/Lib/imputil.py
+++ b/Lib/imputil.py
@@ -462,16 +462,6 @@ def _os_bootstrap():
elif 'os2' in names:
sep = '\\'
from os2 import stat
- elif 'mac' in names:
- from mac import stat
- def join(a, b):
- if a == '':
- return b
- if ':' not in a:
- a = ':' + a
- if a[-1:] != ':':
- a = a + ':'
- return a + b
else:
raise ImportError, 'no os specific module found'