]> granicus.if.org Git - python/commitdiff
Normalized all the end-of-class lines.
authorGreg Ward <gward@python.net>
Thu, 25 May 2000 01:10:04 +0000 (01:10 +0000)
committerGreg Ward <gward@python.net>
Thu, 25 May 2000 01:10:04 +0000 (01:10 +0000)
Lib/distutils/command/bdist_rpm.py
Lib/distutils/command/build.py
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_py.py
Lib/distutils/command/clean.py
Lib/distutils/command/install.py
Lib/distutils/command/sdist.py

index 9c3aca3bc1b03c28530da12f0b35c0bf65794e0c..d10d0762ca8852da14e12ee9cc1c77e3864522ca 100644 (file)
@@ -388,3 +388,5 @@ class bdist_rpm (Command):
                    'list or tuple of strings' % var_name)
         else:
             return default_value
+
+# class bdist_rpm
index 7d753b11267b1114254034e16eacbd4545fb9641..aab0d6f177022c9a6f9ce2232777e3d8aad8ce71 100644 (file)
@@ -100,4 +100,4 @@ class build (Command):
         if self.distribution.has_ext_modules():
             self.run_peer ('build_ext')
 
-# end class Build
+# class build
index 681cd76b56e8dcefa1da48d68af885c050b2ebdc..dba9a40a8bab06ccfc0ef6b6ea4c850046f60e87 100644 (file)
@@ -207,4 +207,4 @@ class build_clib (Command):
 
     # build_libraries ()
 
-# class BuildLib
+# class build_lib
index aa9ea0d034c22356d6e1b3fd45fc8c67a232c1ed..4fb51ac7132b050d3fca3722d253d4ecc04f9ae9 100644 (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) + '.lib'
 
-# class BuildExt
+# class build_ext
index 2a1fdd62c9a92ce72bec953f0af8c50b01bc3e0a..72c6157ceb76a17fcdb3998ec2ae9a258bf5cbad 100644 (file)
@@ -322,4 +322,4 @@ class build_py (Command):
 
     # build_packages ()
                        
-# end class BuildPy
+# class build_py
index d6999060bd67b8f09c8b1017163b5168ba6d95f4..62307a1968e51e5b16138c6f5287b5b6dbee3508 100644 (file)
@@ -74,3 +74,5 @@ class clean (Command):
                 self.announce ("removing '%s'" % self.build_base)
             except OSError:
                 pass
+
+# class clean
index 392fe507c95711952aba9d60da5e7e7850b15ba5..5398175f45854c636a3e0a7a36b0d74bf8085c1c 100644 (file)
@@ -519,4 +519,4 @@ class install (Command):
                         "installations)") %
                        filename)
 
-# class Install
+# class install
index f644e9fbfb1f1d06a74533e49656428c72b59d0f..56bc4c9556d2eb3c6fae3dd5f462f76feafbd41b 100644 (file)
@@ -519,7 +519,7 @@ class sdist (Command):
         if not self.keep_tree:
             remove_tree (base_dir, self.verbose, self.dry_run)
 
-# class Dist
+# class sdist
 
 
 # ----------------------------------------------------------------------