diff options
author | Greg Ward <gward@python.net> | 2000-09-30 18:27:54 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-30 18:27:54 +0000 |
commit | cb1f4c4d33711a964dcd40b32a562e2acf745fc2 (patch) | |
tree | 3e8bd80543d1b5e6c843087678194fa1608d13e6 /Lib/distutils/command/build.py | |
parent | 963cd2d85d26467f60a3c03b5025fddfff0cd80c (diff) | |
download | cpython-git-cb1f4c4d33711a964dcd40b32a562e2acf745fc2.tar.gz |
Standardized whitespace around function calls.
Diffstat (limited to 'Lib/distutils/command/build.py')
-rw-r--r-- | Lib/distutils/command/build.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py index 1f785996ec..0fed6b489e 100644 --- a/Lib/distutils/command/build.py +++ b/Lib/distutils/command/build.py @@ -70,10 +70,10 @@ class build (Command): # 'lib.<plat>' under the base build directory. We only use one of # them for a given distribution, though -- if self.build_purelib is None: - self.build_purelib = os.path.join (self.build_base, 'lib') + self.build_purelib = os.path.join(self.build_base, 'lib') if self.build_platlib is None: - self.build_platlib = os.path.join (self.build_base, - 'lib' + plat_specifier) + self.build_platlib = os.path.join(self.build_base, + 'lib' + plat_specifier) # 'build_lib' is the actual directory that we will use for this # particular module distribution -- if user didn't supply it, pick @@ -87,10 +87,10 @@ class build (Command): # 'build_temp' -- temporary directory for compiler turds, # "build/temp.<plat>" if self.build_temp is None: - self.build_temp = os.path.join (self.build_base, - 'temp' + plat_specifier) + self.build_temp = os.path.join(self.build_base, + 'temp' + plat_specifier) if self.build_scripts is None: - self.build_scripts = os.path.join (self.build_base, 'scripts') + self.build_scripts = os.path.join(self.build_base, 'scripts') # finalize_options () |