Home
last modified time | relevance | path

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

/external/python/cpython2/Mac/Modules/win/
D_Winmodule.c46 PyTypeObject Window_Type; variable
48 #define WinObj_Check(x) ((x)->ob_type == &Window_Type || PyObject_TypeCheck((x), &Window_Type))
61 it = PyObject_NEW(WindowObject, &Window_Type); in WinObj_New()
2609 PyTypeObject Window_Type = { variable
3254 Window_Type.ob_type = &PyType_Type; in init_Win()
3255 if (PyType_Ready(&Window_Type) < 0) return; in init_Win()
3256 Py_INCREF(&Window_Type); in init_Win()
3257 PyModule_AddObject(m, "Window", (PyObject *)&Window_Type); in init_Win()
3259 Py_INCREF(&Window_Type); in init_Win()
3260 PyModule_AddObject(m, "WindowType", (PyObject *)&Window_Type); in init_Win()