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

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


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

Modified Files:
	mltesupport.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: mltesupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/mlte/mltesupport.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** mltesupport.py	2001/07/16 21:58:44	1.4
--- mltesupport.py	2001/08/23 13:50:07	1.5
***************
*** 9,16 ****
  
  # Declarations that change for each manager
! MODNAME = 'Mlte'				# 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
--- 9,16 ----
  
  # Declarations that change for each manager
! MODNAME = '_Mlte'				# The name of the module
  
  # The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'Mlte'			# 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