[Python-checkins] r71295 - python/trunk/Lib/distutils/command/bdist.py

tarek.ziade python-checkins at python.org
Mon Apr 6 01:03:10 CEST 2009


Author: tarek.ziade
Date: Mon Apr  6 01:03:10 2009
New Revision: 71295

Log:
pep8-fied method names

Modified:
   python/trunk/Lib/distutils/command/bdist.py

Modified: python/trunk/Lib/distutils/command/bdist.py
==============================================================================
--- python/trunk/Lib/distutils/command/bdist.py	(original)
+++ python/trunk/Lib/distutils/command/bdist.py	Mon Apr  6 01:03:10 2009
@@ -75,14 +75,14 @@
                       }
 
 
-    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 @@
         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:


More information about the Python-checkins mailing list