3
3
4
4
static PyTypeObject _PyExc_InterpreterError = {
5
5
PyVarObject_HEAD_INIT (NULL , 0 )
6
- .tp_name = "InterpreterError" ,
6
+ .tp_name = "interpreters. InterpreterError" ,
7
7
.tp_doc = PyDoc_STR ("A cross-interpreter operation failed" ),
8
8
//.tp_base = (PyTypeObject *)PyExc_BaseException,
9
9
};
@@ -13,7 +13,7 @@ PyObject *PyExc_InterpreterError = (PyObject *)&_PyExc_InterpreterError;
13
13
14
14
static PyTypeObject _PyExc_InterpreterNotFoundError = {
15
15
PyVarObject_HEAD_INIT (NULL , 0 )
16
- .tp_name = "InterpreterNotFoundError" ,
16
+ .tp_name = "interpreters. InterpreterNotFoundError" ,
17
17
.tp_doc = PyDoc_STR ("An interpreter was not found" ),
18
18
.tp_base = & _PyExc_InterpreterError ,
19
19
};
@@ -24,7 +24,7 @@ PyObject *PyExc_InterpreterNotFoundError = (PyObject *)&_PyExc_InterpreterNotFou
24
24
static int
25
25
_init_not_shareable_error_type (PyInterpreterState * interp )
26
26
{
27
- const char * name = "_interpreters .NotShareableError" ;
27
+ const char * name = "interpreters .NotShareableError" ;
28
28
PyObject * base = PyExc_ValueError ;
29
29
PyObject * ns = NULL ;
30
30
PyObject * exctype = PyErr_NewException (name , base , ns );
0 commit comments