[Python-checkins] CVS: python/dist/src/Lib/distutils/command build_ext.py,1.54,1.55 install_headers.py,1.3,1.4

Jeremy Hylton python-dev@python.org
Fri, 7 Jul 2000 13:41:23 -0700


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv26175/command

Modified Files:
	build_ext.py install_headers.py 
Log Message:
fix inconsistent use of tabs and spaces


Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.54
retrieving revision 1.55
diff -C2 -r1.54 -r1.55
*** build_ext.py	2000/06/29 23:09:20	1.54
--- build_ext.py	2000/07/07 20:41:21	1.55
***************
*** 371,380 ****
                                               self.get_ext_filename(fullname))
  
! 	    if not (self.force or newer_group(sources, ext_filename, 'newer')):
! 	    	self.announce ("skipping '%s' extension (up-to-date)" %
                                 ext.name)
! 		continue # 'for' loop over all extensions
! 	    else:
!         	self.announce ("building '%s' extension" % ext.name)
  
              # First, scan the sources for SWIG definition files (.i), run
--- 371,380 ----
                                               self.get_ext_filename(fullname))
  
!             if not (self.force or newer_group(sources, ext_filename, 'newer')):
!                 self.announce ("skipping '%s' extension (up-to-date)" %
                                 ext.name)
!                 continue # 'for' loop over all extensions
!             else:
!                 self.announce ("building '%s' extension" % ext.name)
  
              # First, scan the sources for SWIG definition files (.i), run

Index: install_headers.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_headers.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** install_headers.py	2000/06/21 03:14:27	1.3
--- install_headers.py	2000/07/07 20:41:21	1.4
***************
*** 23,27 ****
      def initialize_options (self):
          self.install_dir = None
! 	self.outfiles = []
  
      def finalize_options (self):
--- 23,27 ----
      def initialize_options (self):
          self.install_dir = None
!         self.outfiles = []
  
      def finalize_options (self):