bpo-43517: Fix false positive in detection of circular imports (#24895)

This commit is contained in:
Antoine Pitrou 2021-03-20 20:07:44 +01:00 committed by GitHub
parent 7cb033c423
commit 2fd16ef406
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 81 additions and 2 deletions

View file

@ -1593,7 +1593,7 @@ PyImport_ImportModuleLevelObject(PyObject *name, PyObject *globals,
}
if (mod != NULL && mod != Py_None) {
if (import_ensure_initialized(tstate->interp, mod, name) < 0) {
if (import_ensure_initialized(tstate->interp, mod, abs_name) < 0) {
goto error;
}
}