summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2003-02-19 02:35:07 (GMT)
committerTim Peters <tim.peters@gmail.com>2003-02-19 02:35:07 (GMT)
commitf2715e076435b74638acb81512c2ee014f75aea2 (patch)
tree8f50b5bca2f1d4d7c232894d907996f4104c3515 /Lib/os.py
parentf805cd2c1f4d850b1d933f39e63a61a3348ec224 (diff)
downloadcpython-f2715e076435b74638acb81512c2ee014f75aea2.zip
cpython-f2715e076435b74638acb81512c2ee014f75aea2.tar.gz
cpython-f2715e076435b74638acb81512c2ee014f75aea2.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/os.py b/Lib/os.py
index d3078d6..4d40f65 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -44,7 +44,7 @@ if 'posix' in _names:
except ImportError:
pass
import posixpath as path
-
+
import posix
__all__.extend(_get_exports_list(posix))
del posix
@@ -58,7 +58,7 @@ elif 'nt' in _names:
except ImportError:
pass
import ntpath as path
-
+
import nt
__all__.extend(_get_exports_list(nt))
del nt
@@ -75,7 +75,7 @@ elif 'os2' in _names:
import ntpath as path
else:
import os2emxpath as path
-
+
import os2
__all__.extend(_get_exports_list(os2))
del os2
@@ -89,7 +89,7 @@ elif 'mac' in _names:
except ImportError:
pass
import macpath as path
-
+
import mac
__all__.extend(_get_exports_list(mac))
del mac
@@ -104,7 +104,7 @@ elif 'ce' in _names:
pass
# We can use the standard Windows path.
import ntpath as path
-
+
import ce
__all__.extend(_get_exports_list(ce))
del ce
@@ -118,7 +118,7 @@ elif 'riscos' in _names:
except ImportError:
pass
import riscospath as path
-
+
import riscos
__all__.extend(_get_exports_list(riscos))
del riscos