mirror of
https://github.com/python/cpython.git
synced 2025-10-02 21:25:24 +00:00
Moved a bunch of routines from "blacklisted" to "graylisted", as they _are_
available in OSX (mach-o) but not in CarbonLib (neither on OSX or OS9).
This commit is contained in:
parent
c7cb9ed35f
commit
7eb48e3283
2 changed files with 263 additions and 10 deletions
|
@ -88,15 +88,6 @@ class MyScanner(Scanner):
|
|||
'GetControlPropertySize',
|
||||
'SendControlMessage', # Parameter changed from long to void* from UH3.3 to UH3.4
|
||||
'CreateTabsControl', # wrote manually
|
||||
# these are part of Carbon, yet not in CarbonLib; OSX-only
|
||||
'CreateRoundButtonControl',
|
||||
'CreateDisclosureButtonControl',
|
||||
'CreateRelevanceBarControl',
|
||||
'DisableControl',
|
||||
'EnableControl',
|
||||
'IsControlEnabled',
|
||||
'CreateEditUnicodeTextControl',
|
||||
'CopyDataBrowserEditText',
|
||||
|
||||
# too lazy for now
|
||||
'GetImageWellContentInfo',
|
||||
|
@ -252,7 +243,18 @@ class MyScanner(Scanner):
|
|||
'SetControlBounds',
|
||||
'SetControlPopupMenuHandle',
|
||||
'SetControlPopupMenuID',
|
||||
])]
|
||||
]),
|
||||
('#if TARGET_API_MAC_OSX', [
|
||||
'CreateRoundButtonControl',
|
||||
'CreateDisclosureButtonControl',
|
||||
'CreateRelevanceBarControl',
|
||||
'DisableControl',
|
||||
'EnableControl',
|
||||
'IsControlEnabled',
|
||||
'CreateEditUnicodeTextControl',
|
||||
'CopyDataBrowserEditText',
|
||||
]),
|
||||
]
|
||||
|
||||
def makeblacklisttypes(self):
|
||||
return [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue