mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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:
parent
e2ba87396c
commit
d0e59fb68d
6 changed files with 872 additions and 0 deletions
2
setup.py
2
setup.py
|
@ -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'],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue