[Python-checkins] CVS: python/dist/src/Tools/bgen/bgen macsupport.py,1.23,1.24

Jack Jansen jackjansen@users.sourceforge.net
Fri, 30 Nov 2001 06:16:38 -0800


Update of /cvsroot/python/python/dist/src/Tools/bgen/bgen
In directory usw-pr-cvs1:/tmp/cvs-serv22285/Tools/bgen/bgen

Modified Files:
	macsupport.py 
Log Message:
Merged changes made on r22b2-branch between r22b2 and r22b2-mac (the
changes from start of branch upto r22b2 were already merged, of course).


Index: macsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/bgen/bgen/macsupport.py,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** macsupport.py	2001/07/01 22:09:29	1.23
--- macsupport.py	2001/11/30 14:16:36	1.24
***************
*** 158,162 ****
--- 158,164 ----
  	
  	def precheck(self):
+ 		Output('#ifndef %s', self.name)
  		Output('PyMac_PRECHECK(%s);', self.name)
+ 		Output('#endif')
  
  class WeakLinkFunctionGenerator(WeakLinkMixIn, FunctionGenerator): pass