Commit 3ee327cd authored by Stefan Behnel's avatar Stefan Behnel

Clarify import error message: subinterpreters are supported, just not more than one.

parent 4caf76b4
......@@ -925,7 +925,8 @@ static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) {
{
PyErr_SetString(
PyExc_ImportError, "Interpreter change detected - this module does not support subinterpreters.");
PyExc_ImportError,
"Interpreter change detected - this module can only be loaded into one interpreter per process.");
return -1;
}
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment