Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dif_py_both.h29 #define PyErr_SetVim(str) PyErr_SetString(VimError, str)
30 #define PyErr_SET_VIM(str) PyErr_SET_STRING(VimError, str)
33 #define PyErr_VIM_FORMAT(str, arg) PyErr_FORMAT(VimError, str, arg)
90 static PyObject *VimError; variable
6884 if (!(VimError = PyErr_NewException("vim.error", NULL, NULL))) in populate_module()
6886 ADD_OBJECT(m, "error", VimError); in populate_module()