[Python-checkins] CVS: python/dist/src/Mac/Modules/drag dragsupport.py,1.6,1.7

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


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

Modified Files:
	dragsupport.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: dragsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/drag/dragsupport.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** dragsupport.py	2001/05/22 21:52:08	1.6
--- dragsupport.py	2001/08/23 13:48:25	1.7
***************
*** 8,16 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Drag.h'		# The Apple header file
! MODNAME = 'Drag'				# The name of the module
  OBJECTNAME = 'DragObj'			# The basic name of the objects used here
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME			# The prefix for module-wide routines
  OBJECTTYPE = 'DragRef'	# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods
--- 8,16 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'Drag.h'		# The Apple header file
! MODNAME = '_Drag'				# The name of the module
  OBJECTNAME = 'DragObj'			# The basic name of the objects used here
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Drag'			# The prefix for module-wide routines
  OBJECTTYPE = 'DragRef'	# The C type used to represent them
  OBJECTPREFIX = MODPREFIX + 'Obj'	# The prefix for object methods