Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dif_python.c747 PyObject *exdict = PyModule_GetDict(exmod); in get_exceptions() local
748 imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError"); in get_exceptions()
749 imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError"); in get_exceptions()
750 imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError"); in get_exceptions()
751 imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt"); in get_exceptions()
752 imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError"); in get_exceptions()
753 imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError"); in get_exceptions()
754 imp_PyExc_SystemExit = PyDict_GetItemString(exdict, "SystemExit"); in get_exceptions()
755 imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError"); in get_exceptions()
756 imp_PyExc_ImportError = PyDict_GetItemString(exdict, "ImportError"); in get_exceptions()
[all …]
H A Dif_python3.c872 PyObject *exdict = PyModule_GetDict(exmod); in get_py3_exceptions() local
873 p3imp_PyExc_AttributeError = PyDict_GetItemString(exdict, "AttributeError"); in get_py3_exceptions()
874 p3imp_PyExc_IndexError = PyDict_GetItemString(exdict, "IndexError"); in get_py3_exceptions()
875 p3imp_PyExc_KeyError = PyDict_GetItemString(exdict, "KeyError"); in get_py3_exceptions()
876 p3imp_PyExc_KeyboardInterrupt = PyDict_GetItemString(exdict, "KeyboardInterrupt"); in get_py3_exceptions()
877 p3imp_PyExc_TypeError = PyDict_GetItemString(exdict, "TypeError"); in get_py3_exceptions()
878 p3imp_PyExc_ValueError = PyDict_GetItemString(exdict, "ValueError"); in get_py3_exceptions()
879 p3imp_PyExc_SystemExit = PyDict_GetItemString(exdict, "SystemExit"); in get_py3_exceptions()
880 p3imp_PyExc_RuntimeError = PyDict_GetItemString(exdict, "RuntimeError"); in get_py3_exceptions()
881 p3imp_PyExc_ImportError = PyDict_GetItemString(exdict, "ImportError"); in get_py3_exceptions()
[all …]