Normalized all the end-of-class lines.

This commit is contained in:
Greg Ward 2000-05-25 01:10:04 +00:00
parent 51060be2f8
commit fcd974efbb
8 changed files with 10 additions and 6 deletions

View file

@ -388,3 +388,5 @@ class bdist_rpm (Command):
'list or tuple of strings' % var_name) 'list or tuple of strings' % var_name)
else: else:
return default_value return default_value
# class bdist_rpm

View file

@ -100,4 +100,4 @@ class build (Command):
if self.distribution.has_ext_modules(): if self.distribution.has_ext_modules():
self.run_peer ('build_ext') self.run_peer ('build_ext')
# end class Build # class build

View file

@ -207,4 +207,4 @@ class build_clib (Command):
# build_libraries () # build_libraries ()
# class BuildLib # class build_lib

View file

@ -406,4 +406,4 @@ class build_ext (Command):
return apply (os.path.join, ext_path) + '_d.lib' return apply (os.path.join, ext_path) + '_d.lib'
return apply (os.path.join, ext_path) + '.lib' return apply (os.path.join, ext_path) + '.lib'
# class BuildExt # class build_ext

View file

@ -322,4 +322,4 @@ class build_py (Command):
# build_packages () # build_packages ()
# end class BuildPy # class build_py

View file

@ -74,3 +74,5 @@ class clean (Command):
self.announce ("removing '%s'" % self.build_base) self.announce ("removing '%s'" % self.build_base)
except OSError: except OSError:
pass pass
# class clean

View file

@ -519,4 +519,4 @@ class install (Command):
"installations)") % "installations)") %
filename) filename)
# class Install # class install

View file

@ -519,7 +519,7 @@ class sdist (Command):
if not self.keep_tree: if not self.keep_tree:
remove_tree (base_dir, self.verbose, self.dry_run) remove_tree (base_dir, self.verbose, self.dry_run)
# class Dist # class sdist
# ---------------------------------------------------------------------- # ----------------------------------------------------------------------