Whoops, it's late -- generated output now matches what's checked in...

This commit is contained in:
Just van Rossum 2002-01-05 23:44:33 +00:00
parent eae95044ae
commit 8a107fbfed
2 changed files with 25 additions and 25 deletions

View file

@ -14,7 +14,7 @@ KIND = '' # Usually 'Ptr' or 'Handle'
# The following is *usually* unchanged but may still require tuning
MODPREFIX = 'App' # The prefix for module-wide routines
OBJECTTYPE = OBJECTNAME + KIND # The C type used to represent them
OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
OBJECTPREFIX = OBJECTNAME + 'Obj' # The prefix for object methods
INPUTFILE = string.lower(MODPREFIX) + 'gen.py' # The file generated by the scanner
OUTPUTFILE = MODNAME + "module.c" # The file generated by this program