[Python-checkins] CVS: python/dist/src/Mac/Modules/ae aesupport.py,1.22,1.23

Jack Jansen jackjansen@users.sourceforge.net
Thu, 23 Aug 2001 06:47:47 -0700


Update of /cvsroot/python/python/dist/src/Mac/Modules/ae
In directory usw-pr-cvs1:/tmp/cvs-serv26749/Python/Mac/Modules/ae

Modified Files:
	aesupport.py 
Log Message:
The MacOS toolbox modules have acquired an _ in front of their name. Normal usage is through a wrapper module (without underscore) which lives in the Carbon package.

Index: aesupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/ae/aesupport.py,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** aesupport.py	2001/06/20 21:44:38	1.22
--- aesupport.py	2001/08/23 13:47:45	1.23
***************
*** 165,169 ****
  """
  
! module = MacModule('AE', 'AE', includestuff, finalstuff, initstuff)
  
  class AEDescDefinition(GlobalObjectDefinition):
--- 165,169 ----
  """
  
! module = MacModule('_AE', 'AE', includestuff, finalstuff, initstuff)
  
  class AEDescDefinition(GlobalObjectDefinition):
***************
*** 223,226 ****
  for f in aedescmethods: aedescobject.add(f)
  
! SetOutputFileName('AEmodule.c')
  module.generate()
--- 223,226 ----
  for f in aedescmethods: aedescobject.add(f)
  
! SetOutputFileName('_AEmodule.c')
  module.generate()