Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/ctl/
D_Ctlmodule.c137 PyTypeObject Control_Type; variable
139 #define CtlObj_Check(x) ((x)->ob_type == &Control_Type || PyObject_TypeCheck((x), &Control_Type))
151 it = PyObject_NEW(ControlObject, &Control_Type); in CtlObj_New()
3868 PyTypeObject Control_Type = { variable
5536 it = PyObject_NEW(ControlObject, &Control_Type); in CtlObj_NewUnmanaged()
5804 Control_Type.ob_type = &PyType_Type; in init_Ctl()
5805 if (PyType_Ready(&Control_Type) < 0) return; in init_Ctl()
5806 Py_INCREF(&Control_Type); in init_Ctl()
5807 PyModule_AddObject(m, "Control", (PyObject *)&Control_Type); in init_Ctl()
5809 Py_INCREF(&Control_Type); in init_Ctl()
[all …]