[Python-checkins] CVS: python/dist/src/Mac/Modules/cf cfsupport.py,1.7,1.8
Jack Jansen
jackjansen@users.sourceforge.net
2001年8月23日 06:47:59 -0700
Update of /cvsroot/python/python/dist/src/Mac/Modules/cf
In directory usw-pr-cvs1:/tmp/cvs-serv26797/Python/Mac/Modules/cf
Modified Files:
cfsupport.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: cfsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/cf/cfsupport.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** cfsupport.py 2001年08月03日 15:36:23 1.7
--- cfsupport.py 2001年08月23日 13:47:57 1.8
***************
*** 9,16 ****
# Declarations that change for each manager
! MODNAME = 'CF' # 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 = '_CF' # The name of the module
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'CF' # 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