[Python-checkins] CVS: python/dist/src/Mac/Modules/evt evtsupport.py,1.12,1.13

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


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

Modified Files:
	evtsupport.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: evtsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/evt/evtsupport.py,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** evtsupport.py	2001/05/22 21:52:17	1.12
--- evtsupport.py	2001/08/23 13:48:34	1.13
***************
*** 8,17 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Events.h'		# The Apple header file
! MODNAME = 'Evt'				# The name of the module
  OBJECTNAME = 'Event'			# The basic name of the objects used here
  KIND = 'Record'				# Usually 'Ptr' or 'Handle'
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + KIND		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods
--- 8,17 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'Events.h'		# The Apple header file
! MODNAME = '_Evt'				# The name of the module
  OBJECTNAME = 'Event'			# The basic name of the objects used here
  KIND = 'Record'				# Usually 'Ptr' or 'Handle'
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Evt'			# The prefix for module-wide routines
  OBJECTTYPE = OBJECTNAME + KIND		# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods