Home
last modified time | relevance | path

Searched refs:Dialog_Type (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Mac/Modules/dlg/
D_Dlgmodule.c129 PyTypeObject Dialog_Type; variable
131 #define DlgObj_Check(x) ((x)->ob_type == &Dialog_Type || PyObject_TypeCheck((x), &Dialog_Type))
142 it = PyObject_NEW(DialogObject, &Dialog_Type); in DlgObj_New()
976 PyTypeObject Dialog_Type = { variable
1596 Dialog_Type.ob_type = &PyType_Type; in init_Dlg()
1597 if (PyType_Ready(&Dialog_Type) < 0) return; in init_Dlg()
1598 Py_INCREF(&Dialog_Type); in init_Dlg()
1599 PyModule_AddObject(m, "Dialog", (PyObject *)&Dialog_Type); in init_Dlg()
1601 Py_INCREF(&Dialog_Type); in init_Dlg()
1602 PyModule_AddObject(m, "DialogType", (PyObject *)&Dialog_Type); in init_Dlg()