mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-43517: Fix false positive in detection of circular imports (#24895)
This commit is contained in:
parent
7cb033c423
commit
2fd16ef406
5 changed files with 81 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue