summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-05-27 20:04:13 (GMT)
committerGitHub <noreply@github.com>2024-05-27 20:04:13 (GMT)
commit660125f864aa533b68a6ccbe11e35f0353388d56 (patch)
tree23a2c292999adabac232df4a5567b6049275020d
parentbd9983cab89cc42eecdbb4556cca0b6d7a7c529c (diff)
downloadcpython-660125f864aa533b68a6ccbe11e35f0353388d56.zip
cpython-660125f864aa533b68a6ccbe11e35f0353388d56.tar.gz
cpython-660125f864aa533b68a6ccbe11e35f0353388d56.tar.bz2
[3.13] gh-119584: Fix test_import Failed Assertion (gh-119623) (gh-119633)
The fix in gh-119561 introduced an assertion that doesn't hold true if any of the three new test extension modules are loaded more than once. This is fine normally but breaks if the new test_check_state_first() is run more than once, which happens for refleak checking and with the regrtest --forever flag. We fix that here by clearing each of the three modules after loading them. We also tweak a check in _modules_by_index_check(). (cherry picked from commit ae7b17673f29efe17b416cbcfbf43b5b3ff5977c) Co-authored-by: Eric Snow <ericsnowcurrently@gmail.com>
-rw-r--r--Lib/test/test_import/__init__.py3
-rw-r--r--Modules/_testsinglephase.c3
-rw-r--r--Python/import.c4
3 files changed, 8 insertions, 2 deletions
diff --git a/Lib/test/test_import/__init__.py b/Lib/test/test_import/__init__.py
index 11eaae5..b09065f 100644
--- a/Lib/test/test_import/__init__.py
+++ b/Lib/test/test_import/__init__.py
@@ -2887,12 +2887,15 @@ class SinglephaseInitTests(unittest.TestCase):
self.assertIs(reloaded.snapshot.cached, reloaded.module)
+ @unittest.skipIf(_testinternalcapi is None, "requires _testinternalcapi")
def test_check_state_first(self):
for variant in ['', '_with_reinit', '_with_state']:
name = f'{self.NAME}{variant}_check_cache_first'
with self.subTest(name):
mod = self._load_dynamic(name, self.ORIGIN)
self.assertEqual(mod.__name__, name)
+ sys.modules.pop(name, None)
+ _testinternalcapi.clear_extension(name, self.ORIGIN)
# Currently, for every single-phrase init module loaded
# in multiple interpreters, those interpreters share a
diff --git a/Modules/_testsinglephase.c b/Modules/_testsinglephase.c
index bcdb5ba..066e0db 100644
--- a/Modules/_testsinglephase.c
+++ b/Modules/_testsinglephase.c
@@ -682,6 +682,9 @@ finally:
/* the _testsinglephase_*_check_cache_first modules */
/****************************************************/
+/* Each of these modules should only be freshly loaded. That means
+ clearing the caches and each module def's m_base after each load. */
+
static struct PyModuleDef _testsinglephase_check_cache_first = {
PyModuleDef_HEAD_INIT,
.m_name = "_testsinglephase_check_cache_first",
diff --git a/Python/import.c b/Python/import.c
index 4f3325a..6fe6df4 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -494,7 +494,7 @@ _modules_by_index_check(PyInterpreterState *interp, Py_ssize_t index)
if (MODULES_BY_INDEX(interp) == NULL) {
return "Interpreters module-list not accessible.";
}
- if (index > PyList_GET_SIZE(MODULES_BY_INDEX(interp))) {
+ if (index >= PyList_GET_SIZE(MODULES_BY_INDEX(interp))) {
return "Module index out of bounds.";
}
return NULL;
@@ -2183,7 +2183,7 @@ clear_singlephase_extension(PyInterpreterState *interp,
/* Clear data set when the module was initially loaded. */
def->m_base.m_init = NULL;
Py_CLEAR(def->m_base.m_copy);
- // We leave m_index alone since there's no reason to reset it.
+ def->m_base.m_index = 0;
/* Clear the PyState_*Module() cache entry. */
Py_ssize_t index = _get_cached_module_index(cached);