cpython/Python/crossinterp_exceptions.h


/* InterpreterError extends Exception */

static PyTypeObject _PyExc_InterpreterError =;
PyObject *PyExc_InterpreterError =;

/* InterpreterNotFoundError extends InterpreterError */

static PyTypeObject _PyExc_InterpreterNotFoundError =;
PyObject *PyExc_InterpreterNotFoundError =;

/* NotShareableError extends ValueError */

static int
_init_not_shareable_error_type(PyInterpreterState *interp)
{}

static void
_fini_not_shareable_error_type(PyInterpreterState *interp)
{}

static PyObject *
_get_not_shareable_error_type(PyInterpreterState *interp)
{}


/* lifecycle */

static int
init_exceptions(PyInterpreterState *interp)
{}

static void
fini_exceptions(PyInterpreterState *interp)
{}