Kaydet (Commit) a28dab5e authored tarafından Guido van Rossum's avatar Guido van Rossum

Write out the dynamic OS choice, to avoid exec statements.

Adding support for a new OS is now a bit more work, but I bet that
'dos' or 'nt' will cover most situations...
üst 7922bd73
...@@ -6,7 +6,8 @@ ...@@ -6,7 +6,8 @@
# - os.name is either 'posix' or 'mac' # - os.name is either 'posix' or 'mac'
# - os.curdir is a string representing the current directory ('.' or ':') # - os.curdir is a string representing the current directory ('.' or ':')
# - os.pardir is a string representing the parent directory ('..' or '::') # - os.pardir is a string representing the parent directory ('..' or '::')
# - os.sep is the (or a most common) pathname separator ('/' or ':') # - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\')
# - os.altsep is the alternatte pathname separator (None or '/')
# - os.pathsep is the component separator used in $PATH etc # - os.pathsep is the component separator used in $PATH etc
# - os.defpath is the default search path for executables # - os.defpath is the default search path for executables
...@@ -16,39 +17,71 @@ ...@@ -16,39 +17,71 @@
# and opendir), and leave all pathname manipulation to os.path # and opendir), and leave all pathname manipulation to os.path
# (e.g., split and join). # (e.g., split and join).
_osindex = { import sys
'posix': ('.', '..', '/', ':', ':/bin:/usr/bin'),
'dos': ('.', '..', '\\', ';', '.;C:\\bin'),
'nt': ('.', '..', '\\', ';', '.;C:\\bin'),
'mac': (':', '::', ':', '\n', ':'),
}
# For freeze.py script: _names = sys.builtin_module_names
if 0:
import posix
import posixpath
import sys altsep = None
for name in _osindex.keys():
if name in sys.builtin_module_names: if 'posix' in _names:
curdir, pardir, sep, pathsep, defpath = _osindex[name] name = 'posix'
exec 'from %s import *' % name curdir = '.'; pardir = '..'; sep = '/'; pathsep = ':'
exec 'import %spath' % name defpath = ':/bin:/usr/bin'
exec 'path = %spath' % name from posix import *
exec 'del %spath' % name try:
try: from posix import _exit
exec 'from %s import _exit' % name except ImportError:
except ImportError: pass
pass import posixpath
try: path = posixpath
environ del posixpath
except: elif 'nt' in _names:
environ = {} # Make sure os.environ exists, at least name = 'nt'
break curdir = '.'; pardir = '..'; sep = '\\'; pathsep = ';'
defpath = '.;C:\\bin'
from nt import *
try:
from nt import _exit
except ImportError:
pass
import ntpath
path = ntpath
del ntpath
elif 'dos' in _names:
name = 'dos'
curdir = '.'; pardir = '..'; sep = '\\'; pathsep = ';'
defpath = '.;C:\\bin'
from dos import *
try:
from dos import _exit
except ImportError:
pass
import dospath
path = dospath
del dospath
elif 'mac' in _names:
name = 'mac'
curdir = ':'; pardir = '::'; sep = ':'; pathsep = '\n'
defpath = ':'
from mac import *
try:
from mac import _exit
except ImportError:
pass
import macpath
path = macpath
del macpath
else: else:
del name
raise ImportError, 'no os specific module found' raise ImportError, 'no os specific module found'
del _names
# Make sure os.environ exists, at least
try:
environ
except NameError:
environ = {}
def execl(file, *args): def execl(file, *args):
execv(file, args) execv(file, args)
...@@ -104,31 +137,13 @@ def _execvpe(file, args, env = None): ...@@ -104,31 +137,13 @@ def _execvpe(file, args, env = None):
exc, arg = error, (errno, msg) exc, arg = error, (errno, msg)
raise exc, arg raise exc, arg
# Provide listdir for Windows NT that doesn't have it built in
if name == 'nt':
try:
_tmp = listdir
del _tmp
except NameError:
def listdir(name):
if path.ismount(name):
list = ['.']
else:
list = ['.', '..']
f = popen('dir/l/b ' + name, 'r')
line = f.readline()
while line:
list.append(line[:-1])
line = f.readline()
return list
# Change environ to automatically call putenv() if it exists # Change environ to automatically call putenv() if it exists
try: try:
_putenv = putenv # This will fail if there's no putenv
putenv
except NameError: except NameError:
_putenv = None pass
if _putenv: else:
import UserDict import UserDict
class _Environ(UserDict.UserDict): class _Environ(UserDict.UserDict):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment