[Python-checkins] CVS: python/dist/src/Lib/distutils sysconfig.py,1.35,1.36

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 17 May 2001 08:03:16 -0700


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

Modified Files:
	sysconfig.py 
Log Message:
Fixed botched indent in _init_mac() code.  (It may never be executed,
but it still can't have any syntax errors.  Went a little too fast
there, Jack? :-)


Index: sysconfig.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/sysconfig.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** sysconfig.py	2001/05/17 12:51:57	1.35
--- sysconfig.py	2001/05/17 15:03:14	1.36
***************
*** 342,346 ****
      import MacOS
      if not hasattr(MacOS, 'runtimemodel'):
!     g['SO'] = '.ppc.slb'
      else:
          g['SO'] = '.%s.slb' % MacOS.runtimemodel
--- 342,346 ----
      import MacOS
      if not hasattr(MacOS, 'runtimemodel'):
!         g['SO'] = '.ppc.slb'
      else:
          g['SO'] = '.%s.slb' % MacOS.runtimemodel