mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
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.
This commit is contained in:
parent
88e0b5bee0
commit
77105a960b
26 changed files with 178 additions and 172 deletions
|
@ -7,10 +7,10 @@ import string
|
|||
|
||||
# Declarations that change for each manager
|
||||
MACHEADERFILE = 'Components.h' # The Apple header file
|
||||
MODNAME = 'Cm' # The name of the module
|
||||
MODNAME = '_Cm' # The name of the module
|
||||
|
||||
# The following is *usually* unchanged but may still require tuning
|
||||
MODPREFIX = MODNAME # The prefix for module-wide routines
|
||||
MODPREFIX = 'Cm' # The prefix for module-wide routines
|
||||
C_OBJECTPREFIX = 'CmpObj' # The prefix for object methods
|
||||
CI_OBJECTPREFIX = 'CmpInstObj'
|
||||
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue