Patch for bug reported in patch #686627: import race condition in
codecs registry startup.
This commit is contained in:
@@ -38,7 +38,7 @@ int import_encodings(void)
|
||||
PyObject *mod;
|
||||
|
||||
import_encodings_called = 1;
|
||||
mod = PyImport_ImportModule("encodings");
|
||||
mod = PyImport_ImportModuleEx("encodings", NULL, NULL, NULL);
|
||||
if (mod == NULL) {
|
||||
if (PyErr_ExceptionMatches(PyExc_ImportError)) {
|
||||
/* Ignore ImportErrors... this is done so that
|
||||
|
||||
Reference in New Issue
Block a user