summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-05 23:03:10 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-05 23:03:10 (GMT)
commitfdda68e0308ca35d68f47ffd3380c768ac59ca72 (patch)
tree814f91ef651f56d6bf7450c5880a4cc581c779a0 /Lib
parent64408fb4c5b58b3fa07a492436dfa5e119c189e0 (diff)
downloadcpython-fdda68e0308ca35d68f47ffd3380c768ac59ca72.zip
cpython-fdda68e0308ca35d68f47ffd3380c768ac59ca72.tar.gz
cpython-fdda68e0308ca35d68f47ffd3380c768ac59ca72.tar.bz2
pep8-fied method names
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/bdist.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index cb7598d..ec3375e 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -75,14 +75,14 @@ class bdist(Command):
}
- def initialize_options (self):
+ def initialize_options(self):
self.bdist_base = None
self.plat_name = None
self.formats = None
self.dist_dir = None
self.skip_build = 0
- def finalize_options (self):
+ def finalize_options(self):
# have to finalize 'plat_name' before 'bdist_base'
if self.plat_name is None:
if self.skip_build:
@@ -110,7 +110,7 @@ class bdist(Command):
if self.dist_dir is None:
self.dist_dir = "dist"
- def run (self):
+ def run(self):
# Figure out which sub-commands we need to run.
commands = []
for format in self.formats: