diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-12 10:31:54 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-12-12 10:31:54 (GMT) |
commit | 6c7e326eaaa2d814e0d299054f78e5bd187489ab (patch) | |
tree | 5343213d9e164e76a47517111dd41b46f7fd4877 /Mac/Modules/dlg | |
parent | 6bf45c67523a8e81963ce645979ac85f4f75ef33 (diff) | |
download | cpython-6c7e326eaaa2d814e0d299054f78e5bd187489ab.zip cpython-6c7e326eaaa2d814e0d299054f78e5bd187489ab.tar.gz cpython-6c7e326eaaa2d814e0d299054f78e5bd187489ab.tar.bz2 |
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).
Diffstat (limited to 'Mac/Modules/dlg')
-rw-r--r-- | Mac/Modules/dlg/_Dlgmodule.c | 18 | ||||
-rw-r--r-- | Mac/Modules/dlg/dlgscan.py | 10 |
2 files changed, 0 insertions, 28 deletions
diff --git a/Mac/Modules/dlg/_Dlgmodule.c b/Mac/Modules/dlg/_Dlgmodule.c index 1a52c16..70db0f8 100644 --- a/Mac/Modules/dlg/_Dlgmodule.c +++ b/Mac/Modules/dlg/_Dlgmodule.c @@ -447,8 +447,6 @@ static PyObject *DlgObj_ShortenDITL(DialogObject *_self, PyObject *_args) return _res; } -#if TARGET_API_MAC_CARBON - static PyObject *DlgObj_InsertDialogItem(DialogObject *_self, PyObject *_args) { PyObject *_res = NULL; @@ -476,9 +474,6 @@ static PyObject *DlgObj_InsertDialogItem(DialogObject *_self, PyObject *_args) _res = Py_None; return _res; } -#endif - -#if TARGET_API_MAC_CARBON static PyObject *DlgObj_RemoveDialogItems(DialogObject *_self, PyObject *_args) { @@ -504,7 +499,6 @@ static PyObject *DlgObj_RemoveDialogItems(DialogObject *_self, PyObject *_args) _res = Py_None; return _res; } -#endif static PyObject *DlgObj_StdFilterProc(DialogObject *_self, PyObject *_args) { @@ -911,16 +905,10 @@ static PyMethodDef DlgObj_methods[] = { PyDoc_STR("() -> (DialogItemIndex _rv)")}, {"ShortenDITL", (PyCFunction)DlgObj_ShortenDITL, 1, PyDoc_STR("(DialogItemIndex numberItems) -> None")}, - -#if TARGET_API_MAC_CARBON {"InsertDialogItem", (PyCFunction)DlgObj_InsertDialogItem, 1, PyDoc_STR("(DialogItemIndex afterItem, DialogItemType itemType, Handle itemHandle, Rect box) -> None")}, -#endif - -#if TARGET_API_MAC_CARBON {"RemoveDialogItems", (PyCFunction)DlgObj_RemoveDialogItems, 1, PyDoc_STR("(DialogItemIndex itemNo, DialogItemIndex amountToRemove, Boolean disposeItemData) -> None")}, -#endif {"StdFilterProc", (PyCFunction)DlgObj_StdFilterProc, 1, PyDoc_STR("() -> (Boolean _rv, EventRecord event, DialogItemIndex itemHit)")}, {"SetDialogDefaultItem", (PyCFunction)DlgObj_SetDialogDefaultItem, 1, @@ -1390,8 +1378,6 @@ static PyObject *Dlg_ResetAlertStage(PyObject *_self, PyObject *_args) return _res; } -#if TARGET_API_MAC_CARBON - static PyObject *Dlg_GetParamText(PyObject *_self, PyObject *_args) { PyObject *_res = NULL; @@ -1416,7 +1402,6 @@ static PyObject *Dlg_GetParamText(PyObject *_self, PyObject *_args) _res = Py_None; return _res; } -#endif static PyObject *Dlg_NewFeaturesDialog(PyObject *_self, PyObject *_args) { @@ -1539,11 +1524,8 @@ static PyMethodDef Dlg_methods[] = { PyDoc_STR("(SInt16 fontNum) -> None")}, {"ResetAlertStage", (PyCFunction)Dlg_ResetAlertStage, 1, PyDoc_STR("() -> None")}, - -#if TARGET_API_MAC_CARBON {"GetParamText", (PyCFunction)Dlg_GetParamText, 1, PyDoc_STR("(Str255 param0, Str255 param1, Str255 param2, Str255 param3) -> None")}, -#endif {"NewFeaturesDialog", (PyCFunction)Dlg_NewFeaturesDialog, 1, PyDoc_STR("(Rect inBoundsRect, Str255 inTitle, Boolean inIsVisible, SInt16 inProcID, WindowPtr inBehind, Boolean inGoAwayFlag, SInt32 inRefCon, Handle inItemListHandle, UInt32 inFlags) -> (DialogPtr _rv)")}, {"GetDialogFromWindow", (PyCFunction)Dlg_GetDialogFromWindow, 1, diff --git a/Mac/Modules/dlg/dlgscan.py b/Mac/Modules/dlg/dlgscan.py index 770d4d2..9567419 100644 --- a/Mac/Modules/dlg/dlgscan.py +++ b/Mac/Modules/dlg/dlgscan.py @@ -60,16 +60,6 @@ class MyScanner(Scanner): 'RunStandardAlert', ] - def makegreylist(self): - return [ - ('#if TARGET_API_MAC_CARBON', [ - 'InsertDialogItem', - 'RemoveDialogItems', - 'GetParamText', - 'CloseStandardSheet', - 'RunStandardAlert', - ])] - def makeblacklisttypes(self): return [ "AlertStdAlertParamPtr", # Too much work, for now |