[Python-checkins] CVS: python/dist/src/Mac/Modules/cm cmsupport.py,1.4,1.5

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


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

Modified Files:
	cmsupport.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: cmsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/cm/cmsupport.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** cmsupport.py	2001/05/22 21:51:33	1.4
--- cmsupport.py	2001/08/23 13:48:02	1.5
***************
*** 8,15 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Components.h'		# The Apple header file
! MODNAME = 'Cm'				# The name of the module
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME			# The prefix for module-wide routines
  C_OBJECTPREFIX = 'CmpObj'	# The prefix for object methods
  CI_OBJECTPREFIX = 'CmpInstObj'
--- 8,15 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'Components.h'		# The Apple header file
! MODNAME = '_Cm'				# The name of the module
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Cm'			# The prefix for module-wide routines
  C_OBJECTPREFIX = 'CmpObj'	# The prefix for object methods
  CI_OBJECTPREFIX = 'CmpInstObj'