Searched refs:ListType (Results 1 – 1 of 1) sorted by relevance
2245 static PyTypeObject ListType; variable2254 #define NEW_LIST(list) ListNew(&ListType, list)6623 CLEAR_FIELD(ListType); in init_structs()6624 ListType.tp_name = "vim.list"; in init_structs()6626 ListType.tp_basicsize = sizeof(ListObject); in init_structs()6627 ListType.tp_as_sequence = &ListAsSeq; in init_structs()6628 ListType.tp_as_mapping = &ListAsMapping; in init_structs()6631 ListType.tp_methods = ListMethods; in init_structs()6632 ListType.tp_iter = (getiterfunc)ListIter; in init_structs()6708 PYTYPE_READY(ListType); in init_types()[all …]