mirror of
https://github.com/python/cpython.git
synced 2025-11-01 18:51:43 +00:00
Revived the Carbon.Help module, but implementing the MacHelp API in stead
of the defunct Balloons API. Help tags are TBD, but at least this gives us access to the help menu.
This commit is contained in:
parent
d94c28e467
commit
983258ed7e
6 changed files with 152 additions and 269 deletions
4
setup.py
4
setup.py
|
|
@ -778,6 +778,8 @@ class PyBuildExt(build_ext):
|
|||
extra_link_args=['-framework', 'Carbon']) )
|
||||
exts.append( Extension('_AE', ['ae/_AEmodule.c'],
|
||||
extra_link_args=['-framework', 'Carbon']) )
|
||||
exts.append( Extension('_AH', ['ah/_AHmodule.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'],
|
||||
|
|
@ -797,6 +799,8 @@ class PyBuildExt(build_ext):
|
|||
extra_link_args=['-framework', 'Carbon']) )
|
||||
exts.append( Extension('_Fm', ['fm/_Fmmodule.c'],
|
||||
extra_link_args=['-framework', 'Carbon']) )
|
||||
exts.append( Extension('_Help', ['help/_Helpmodule.c'],
|
||||
extra_link_args=['-framework', 'Carbon']) )
|
||||
exts.append( Extension('_Icn', ['icn/_Icnmodule.c'],
|
||||
extra_link_args=['-framework', 'Carbon']) )
|
||||
exts.append( Extension('_IBCarbon', ['ibcarbon/_IBCarbon.c'],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue