Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dif_py_both.h6450 static PyTypeObject CurrentType; variable
6589 CLEAR_FIELD(CurrentType); in init_structs()
6590 CurrentType.tp_name = "vim.currentdata"; in init_structs()
6591 CurrentType.tp_basicsize = sizeof(CurrentObject); in init_structs()
6592 CurrentType.tp_flags = Py_TPFLAGS_DEFAULT; in init_structs()
6593 CurrentType.tp_doc = "vim current object"; in init_structs()
6594 CurrentType.tp_methods = CurrentMethods; in init_structs()
6599 CurrentType.tp_getattr = (getattrfunc)CurrentGetattr; in init_structs()
6600 CurrentType.tp_setattr = (setattrfunc)CurrentSetattr; in init_structs()
6706 PYTYPE_READY(CurrentType); in init_types()
[all …]