mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Getting rid of pre-Carbon (MacOS8) support. All code depending on
TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some TARGET_API_MAC_OSX conditional code is gone, because it is no longer used on OSX-only Python (only in MacPython-OS9).
This commit is contained in:
parent
6bf45c6752
commit
6c7e326eaa
54 changed files with 100 additions and 5242 deletions
|
@ -62,24 +62,21 @@ class MyScanner(Scanner):
|
|||
"MakeTrackTimeTable", # Uses long * return?
|
||||
"MakeMediaTimeTable", # ditto
|
||||
## "VideoMediaGetStallCount", # Undefined in CW Pro 3 library
|
||||
]
|
||||
# OS8 only:
|
||||
'SpriteMediaGetIndImageProperty', # XXXX Why isn't this in carbon?
|
||||
'CheckQuickTimeRegistration',
|
||||
'SetMovieAnchorDataRef',
|
||||
'GetMovieAnchorDataRef',
|
||||
'GetMovieLoadState',
|
||||
'OpenADataHandler',
|
||||
'MovieMediaGetCurrentMovieProperty',
|
||||
'MovieMediaGetCurrentTrackProperty',
|
||||
'MovieMediaGetChildMovieDataReference',
|
||||
'MovieMediaSetChildMovieDataReference',
|
||||
'MovieMediaLoadChildMovieFromDataReference',
|
||||
'Media3DGetViewObject',
|
||||
|
||||
def makegreylist(self):
|
||||
return [
|
||||
('#if !TARGET_API_MAC_CARBON', [
|
||||
'SpriteMediaGetIndImageProperty', # XXXX Why isn't this in carbon?
|
||||
'CheckQuickTimeRegistration',
|
||||
'SetMovieAnchorDataRef',
|
||||
'GetMovieAnchorDataRef',
|
||||
'GetMovieLoadState',
|
||||
'OpenADataHandler',
|
||||
'MovieMediaGetCurrentMovieProperty',
|
||||
'MovieMediaGetCurrentTrackProperty',
|
||||
'MovieMediaGetChildMovieDataReference',
|
||||
'MovieMediaSetChildMovieDataReference',
|
||||
'MovieMediaLoadChildMovieFromDataReference',
|
||||
'Media3DGetViewObject',
|
||||
])]
|
||||
]
|
||||
|
||||
def makeblacklisttypes(self):
|
||||
return [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue