diff options
| author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:00:19 +0000 |
|---|---|---|
| committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-17 08:00:19 +0000 |
| commit | 6811c9d7ad4341ea3769490502cd805ce400eb09 (patch) | |
| tree | fe49db859c699ab3efd734155ae8b507c084f7c4 /command/build_py.py | |
| parent | 79b3a97173af4724fe2c4b437a12ce760960f718 (diff) | |
| download | python-setuptools-git-6811c9d7ad4341ea3769490502cd805ce400eb09.tar.gz | |
Remove apply()
Diffstat (limited to 'command/build_py.py')
| -rw-r--r-- | command/build_py.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/command/build_py.py b/command/build_py.py index 621bcb4a..3b7ec62c 100644 --- a/command/build_py.py +++ b/command/build_py.py @@ -154,7 +154,7 @@ class build_py (Command): if not self.package_dir: if path: - return apply(os.path.join, path) + return os.path.join(*path) else: return '' else: @@ -167,7 +167,7 @@ class build_py (Command): del path[-1] else: tail.insert(0, pdir) - return apply(os.path.join, tail) + return os.path.join(*tail) else: # Oops, got all the way through 'path' without finding a # match in package_dir. If package_dir defines a directory @@ -181,7 +181,7 @@ class build_py (Command): tail.insert(0, pdir) if tail: - return apply(os.path.join, tail) + return os.path.join(*tail) else: return '' @@ -335,7 +335,7 @@ class build_py (Command): def get_module_outfile (self, build_dir, package, module): outfile_path = [build_dir] + list(package) + [module + ".py"] - return apply(os.path.join, outfile_path) + return os.path.join(*outfile_path) def get_outputs (self, include_bytecode=1): |
