[Python-checkins] CVS: python/dist/src/Mac/Modules/list listsupport.py,1.9,1.10
Jack Jansen
jackjansen@users.sourceforge.net
Thu, 23 Aug 2001 06:49:43 -0700
Update of /cvsroot/python/python/dist/src/Mac/Modules/list
In directory usw-pr-cvs1:/tmp/cvs-serv27365/Python/Mac/Modules/list
Modified Files:
listsupport.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: listsupport.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/list/listsupport.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** listsupport.py 2001/05/22 21:52:53 1.9
--- listsupport.py 2001/08/23 13:49:41 1.10
***************
*** 8,17 ****
# Declarations that change for each manager
MACHEADERFILE = 'Lists.h' # The Apple header file
! MODNAME = 'List' # The name of the module
OBJECTNAME = 'List' # The basic name of the objects used here
KIND = 'Handle' # Usually 'Ptr' or 'Handle'
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = MODNAME # The prefix for module-wide routines
OBJECTTYPE = "ListHandle" # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
--- 8,17 ----
# Declarations that change for each manager
MACHEADERFILE = 'Lists.h' # The Apple header file
! MODNAME = '_List' # The name of the module
OBJECTNAME = 'List' # The basic name of the objects used here
KIND = 'Handle' # Usually 'Ptr' or 'Handle'
# The following is *usually* unchanged but may still require tuning
! MODPREFIX = 'List' # The prefix for module-wide routines
OBJECTTYPE = "ListHandle" # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods