[Python-checkins] CVS: python/dist/src/Lib/distutils/command build_clib.py,1.23,1.24 build_py.py,1.33,1.34

Fred L. Drake fdrake@users.sourceforge.net
Thu, 06 Dec 2001 12:59:19 -0800


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv27394

Modified Files:
	build_clib.py build_py.py 
Log Message:
Whitespace normalization.

Index: build_clib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_clib.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** build_clib.py	2001/08/10 20:24:33	1.23
--- build_clib.py	2001/12/06 20:59:17	1.24
***************
*** 157,161 ****
              if '/' in lib[0] or (os.sep != '/' and os.sep in lib[0]):
                  raise DistutilsSetupError, \
!                       ("bad library name '%s': " + 
                         "may not contain directory separators") % \
                        lib[0]
--- 157,161 ----
              if '/' in lib[0] or (os.sep != '/' and os.sep in lib[0]):
                  raise DistutilsSetupError, \
!                       ("bad library name '%s': " +
                         "may not contain directory separators") % \
                        lib[0]
***************
*** 196,200 ****
                         "'sources' must be present and must be "
                         "a list of source filenames") % lib_name
!             
              filenames.extend(sources)
  
--- 196,200 ----
                         "'sources' must be present and must be "
                         "a list of source filenames") % lib_name
! 
              filenames.extend(sources)
  

Index: build_py.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_py.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** build_py.py	2000/10/02 02:19:04	1.33
--- build_py.py	2001/12/06 20:59:17	1.34
***************
*** 107,111 ****
  
      # run ()
!         
  
      def get_package_dir (self, package):
--- 107,111 ----
  
      # run ()
! 
  
      def get_package_dir (self, package):
***************
*** 179,183 ****
          # __init__.py doesn't exist -- so don't return the filename.
          return
!                 
      # check_package ()
  
--- 179,183 ----
          # __init__.py doesn't exist -- so don't return the filename.
          return
! 
      # check_package ()
  
***************
*** 185,189 ****
      def check_module (self, module, module_file):
          if not os.path.isfile(module_file):
!             self.warn("file %s (for module %s) not found" % 
                        (module_file, module))
              return 0
--- 185,189 ----
      def check_module (self, module, module_file):
          if not os.path.isfile(module_file):
!             self.warn("file %s (for module %s) not found" %
                        (module_file, module))
              return 0