mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Whitespace normalization.
This commit is contained in:
parent
f805cd2c1f
commit
f2715e0764
26 changed files with 110 additions and 114 deletions
12
Lib/os.py
12
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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue