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

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


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

Modified Files:
	fmsupport.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: fmsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/fm/fmsupport.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** fmsupport.py	2001/05/22 21:52:26	1.3
--- fmsupport.py	2001/08/23 13:48:38	1.4
***************
*** 8,15 ****
  # Declarations that change for each manager
  MACHEADERFILE = 'Fonts.h'		# The Apple header file
! MODNAME = 'Fm'				# 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
--- 8,15 ----
  # Declarations that change for each manager
  MACHEADERFILE = 'Fonts.h'		# The Apple header file
! MODNAME = '_Fm'				# The name of the module
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Fm'			# 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