Lines Matching refs:exdict
872 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()
882 p3imp_PyExc_OverflowError = PyDict_GetItemString(exdict, "OverflowError"); in get_py3_exceptions()