diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-02-19 02:35:07 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-02-19 02:35:07 (GMT) |
commit | f2715e076435b74638acb81512c2ee014f75aea2 (patch) | |
tree | 8f50b5bca2f1d4d7c232894d907996f4104c3515 /Lib/os.py | |
parent | f805cd2c1f4d850b1d933f39e63a61a3348ec224 (diff) | |
download | cpython-f2715e076435b74638acb81512c2ee014f75aea2.zip cpython-f2715e076435b74638acb81512c2ee014f75aea2.tar.gz cpython-f2715e076435b74638acb81512c2ee014f75aea2.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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 |