[Python-checkins] CVS: python/dist/src/Mac/Modules/scrap scrapsupport.py,1.3,1.4

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


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

Modified Files:
	scrapsupport.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: scrapsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/scrap/scrapsupport.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** scrapsupport.py	2001/05/22 21:55:26	1.3
--- scrapsupport.py	2001/08/23 13:50:47	1.4
***************
*** 11,18 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Scrap.h'		# The Apple header file
! MODNAME = 'Scrap'				# The name of the module
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME			# The prefix for module-wide routines
  INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
  OUTPUTFILE = '@' + MODNAME + "module.c"	# The file generated by this program
--- 11,18 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'Scrap.h'		# The Apple header file
! MODNAME = '_Scrap'				# The name of the module
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Scrap'			# The prefix for module-wide routines
  INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
  OUTPUTFILE = '@' + MODNAME + "module.c"	# The file generated by this program