bpo-38631: Avoid Py_FatalError() in _multibytecodec init (GH-17233)

If an exception is raised and PyInit__multibytecodec() returns NULL,
Python reports properly the exception to the user. There is no need
to crash Python with Py_FatalError().
This commit is contained in:
Victor Stinner
2019-11-18 17:40:07 +01:00
committed by GitHub
parent 04394df74b
commit bc7d3aa6d7

View File

@@ -2085,7 +2085,6 @@ PyInit__multibytecodec(void)
}
if (PyErr_Occurred()) {
Py_FatalError("can't initialize the _multibytecodec module");
Py_DECREF(m);
m = NULL;
}