/* Predefined exceptions */
-extern DL_IMPORT(PyObject *) PyExc_AccessError;
+extern DL_IMPORT(PyObject *) PyExc_StandardError;
+extern DL_IMPORT(PyObject *) PyExc_NumberError;
+extern DL_IMPORT(PyObject *) PyExc_LookupError;
+
extern DL_IMPORT(PyObject *) PyExc_AssertionError;
extern DL_IMPORT(PyObject *) PyExc_AttributeError;
extern DL_IMPORT(PyObject *) PyExc_EOFError;
extern DL_IMPORT(PyObject *) PyExc_ValueError;
extern DL_IMPORT(PyObject *) PyExc_ZeroDivisionError;
+extern DL_IMPORT(PyObject *) PyExc_MemoryErrorInst;
+
+
/* Convenience functions */
extern int PyErr_BadArgument Py_PROTO((void));