diff options
author | Greg Ward <gward@python.net> | 2000-09-26 01:56:15 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-26 01:56:15 (GMT) |
commit | be86bdea734bc53b25698ff5961183cbb5352ffd (patch) | |
tree | 9a3b3644a07e64af2c3f7dc4893e4cc6f60f0627 /Lib/distutils/util.py | |
parent | fd7b91eff98d4e5fafbe50be0c875d1644bcfa6f (diff) | |
download | cpython-be86bdea734bc53b25698ff5961183cbb5352ffd.zip cpython-be86bdea734bc53b25698ff5961183cbb5352ffd.tar.gz cpython-be86bdea734bc53b25698ff5961183cbb5352ffd.tar.bz2 |
Standardize whitespace in function calls.
Diffstat (limited to 'Lib/distutils/util.py')
-rw-r--r-- | Lib/distutils/util.py | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 367985a..d52c69b 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -88,16 +88,16 @@ def change_root (new_root, pathname): two, which is tricky on DOS/Windows and Mac OS. """ if os.name == 'posix': - if not os.path.isabs (pathname): - return os.path.join (new_root, pathname) + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) else: - return os.path.join (new_root, pathname[1:]) + return os.path.join(new_root, pathname[1:]) elif os.name == 'nt': - (drive, path) = os.path.splitdrive (pathname) + (drive, path) = os.path.splitdrive(pathname) if path[0] == '\\': path = path[1:] - return os.path.join (new_root, path) + return os.path.join(new_root, path) elif os.name == 'mac': if not os.path.isabs(pathname): @@ -129,10 +129,10 @@ def check_environ (): if os.name == 'posix' and not os.environ.has_key('HOME'): import pwd - os.environ['HOME'] = pwd.getpwuid (os.getuid())[5] + os.environ['HOME'] = pwd.getpwuid(os.getuid())[5] if not os.environ.has_key('PLAT'): - os.environ['PLAT'] = get_platform () + os.environ['PLAT'] = get_platform() _environ_checked = 1 @@ -147,15 +147,15 @@ def subst_vars (str, local_vars): '_check_environ()'. Raise ValueError for any variables not found in either 'local_vars' or 'os.environ'.""" - check_environ () + check_environ() def _subst (match, local_vars=local_vars): var_name = match.group(1) - if local_vars.has_key (var_name): - return str (local_vars[var_name]) + if local_vars.has_key(var_name): + return str(local_vars[var_name]) else: return os.environ[var_name] - return re.sub (r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, str) + return re.sub(r'\$([a-zA-Z_][a-zA-Z_0-9]*)', _subst, str) # subst_vars () @@ -169,7 +169,7 @@ def grok_environment_error (exc, prefix="error: "): prefixed with 'prefix'. """ # check for Python 1.5.2-style {IO,OS}Error exception objects - if hasattr (exc, 'filename') and hasattr (exc, 'strerror'): + if hasattr(exc, 'filename') and hasattr(exc, 'strerror'): if exc.filename: error = prefix + "%s: %s" % (exc.filename, exc.strerror) else: |