Added the alias manager too. The interface isn't perfect yet: the alias

manager doesn't always have the alias as the first argument, so things
become functions in stead of methods.
This commit is contained in:
Jack Jansen 2002-11-22 15:53:32 +00:00
parent e2ba87396c
commit d0e59fb68d
6 changed files with 872 additions and 0 deletions

View file

@ -728,6 +728,8 @@ class PyBuildExt(build_ext):
extra_link_args=['-framework', 'Carbon']) )
exts.append( Extension('_AH', ['ah/_AHmodule.c'],
extra_link_args=['-framework', 'Carbon']) )
exts.append( Extension('_Alias', ['alias/_Aliasmodule.c'],
extra_link_args=['-framework', 'Carbon']) )
exts.append( Extension('_App', ['app/_Appmodule.c'],
extra_link_args=['-framework', 'Carbon']) )
exts.append( Extension('_CarbonEvt', ['carbonevt/_CarbonEvtmodule.c'],