Searched refs:LoaderType (Results 1 – 1 of 1) sorted by relevance
557 static PyTypeObject LoaderType; variable1374 if (!(loader = PyObject_NEW(LoaderObject, &LoaderType))) in FinderFindModule()6673 CLEAR_FIELD(LoaderType); in init_structs()6674 LoaderType.tp_name = "vim.Loader"; in init_structs()6675 LoaderType.tp_basicsize = sizeof(LoaderObject); in init_structs()6676 LoaderType.tp_flags = Py_TPFLAGS_DEFAULT; in init_structs()6677 LoaderType.tp_doc = "vim message object"; in init_structs()6678 LoaderType.tp_methods = LoaderMethods; in init_structs()6679 LoaderType.tp_dealloc = (destructor)LoaderDestructor; in init_structs()6713 PYTYPE_READY(LoaderType); in init_types()[all …]