mirror of https://github.com/python/cpython.git
pep8-fied method names
This commit is contained in:
parent
64408fb4c5
commit
fdda68e030
|
@ -75,14 +75,14 @@ class bdist(Command):
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def initialize_options (self):
|
def initialize_options(self):
|
||||||
self.bdist_base = None
|
self.bdist_base = None
|
||||||
self.plat_name = None
|
self.plat_name = None
|
||||||
self.formats = None
|
self.formats = None
|
||||||
self.dist_dir = None
|
self.dist_dir = None
|
||||||
self.skip_build = 0
|
self.skip_build = 0
|
||||||
|
|
||||||
def finalize_options (self):
|
def finalize_options(self):
|
||||||
# have to finalize 'plat_name' before 'bdist_base'
|
# have to finalize 'plat_name' before 'bdist_base'
|
||||||
if self.plat_name is None:
|
if self.plat_name is None:
|
||||||
if self.skip_build:
|
if self.skip_build:
|
||||||
|
@ -110,7 +110,7 @@ def finalize_options (self):
|
||||||
if self.dist_dir is None:
|
if self.dist_dir is None:
|
||||||
self.dist_dir = "dist"
|
self.dist_dir = "dist"
|
||||||
|
|
||||||
def run (self):
|
def run(self):
|
||||||
# Figure out which sub-commands we need to run.
|
# Figure out which sub-commands we need to run.
|
||||||
commands = []
|
commands = []
|
||||||
for format in self.formats:
|
for format in self.formats:
|
||||||
|
|
Loading…
Reference in New Issue