summaryrefslogtreecommitdiffstats
path: root/Modules/_testsinglephase.c
diff options
context:
space:
mode:
authorEric Snow <ericsnowcurrently@gmail.com>2023-02-27 16:21:18 (GMT)
committerGitHub <noreply@github.com>2023-02-27 16:21:18 (GMT)
commitbb0cf8fd60e71581a90179af63e60e8704c3814b (patch)
treeff79b2597b569b605d5fc4c0681559d8c4c2f333 /Modules/_testsinglephase.c
parent0db6f442598a1994c37f24e704892a2bb71a0a1b (diff)
downloadcpython-bb0cf8fd60e71581a90179af63e60e8704c3814b.zip
cpython-bb0cf8fd60e71581a90179af63e60e8704c3814b.tar.gz
cpython-bb0cf8fd60e71581a90179af63e60e8704c3814b.tar.bz2
gh-102251: Updates to test_imp Toward Fixing Some Refleaks (gh-102254)
This is related to fixing the refleaks introduced by commit 096d009. I haven't been able to find the leak yet, but these changes are a consequence of that effort. This includes some cleanup, some tweaks to the existing tests, and a bunch of new test cases. The only change here that might have impact outside the tests in question is in imp.py, where I update imp.load_dynamic() to use spec_from_file_location() instead of creating a ModuleSpec directly. Also note that I've updated the tests to only skip if we're checking for refleaks (regrtest's --huntrleaks), whereas in gh-101969 I had skipped the tests entirely. The tests will be useful for some upcoming work and I'd rather the refleaks not hold that up. (It isn't clear how quickly we'll be able to fix the leaking code, though it will certainly be done in the short term.) https://github.com/python/cpython/issues/102251
Diffstat (limited to 'Modules/_testsinglephase.c')
-rw-r--r--Modules/_testsinglephase.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/Modules/_testsinglephase.c b/Modules/_testsinglephase.c
index 565221c..a161577 100644
--- a/Modules/_testsinglephase.c
+++ b/Modules/_testsinglephase.c
@@ -140,7 +140,7 @@ init_module(PyObject *module, module_state *state)
if (initialized == NULL) {
return -1;
}
- if (PyModule_AddObjectRef(module, "_initialized", initialized) != 0) {
+ if (PyModule_AddObjectRef(module, "_module_initialized", initialized) != 0) {
return -1;
}
@@ -148,13 +148,13 @@ init_module(PyObject *module, module_state *state)
}
-PyDoc_STRVAR(common_initialized_doc,
-"initialized()\n\
+PyDoc_STRVAR(common_state_initialized_doc,
+"state_initialized()\n\
\n\
-Return the seconds-since-epoch when the module was initialized.");
+Return the seconds-since-epoch when the module state was initialized.");
static PyObject *
-common_initialized(PyObject *self, PyObject *Py_UNUSED(ignored))
+common_state_initialized(PyObject *self, PyObject *Py_UNUSED(ignored))
{
module_state *state = get_module_state(self);
if (state == NULL) {
@@ -164,9 +164,9 @@ common_initialized(PyObject *self, PyObject *Py_UNUSED(ignored))
return PyFloat_FromDouble(d);
}
-#define INITIALIZED_METHODDEF \
- {"initialized", common_initialized, METH_NOARGS, \
- common_initialized_doc}
+#define STATE_INITIALIZED_METHODDEF \
+ {"state_initialized", common_state_initialized, METH_NOARGS, \
+ common_state_initialized_doc}
PyDoc_STRVAR(common_look_up_self_doc,
@@ -265,7 +265,7 @@ basic__clear_globals(PyObject *self, PyObject *Py_UNUSED(ignored))
static PyMethodDef TestMethods_Basic[] = {
LOOK_UP_SELF_METHODDEF,
SUM_METHODDEF,
- INITIALIZED_METHODDEF,
+ STATE_INITIALIZED_METHODDEF,
INITIALIZED_COUNT_METHODDEF,
_CLEAR_GLOBALS_METHODDEF,
{NULL, NULL} /* sentinel */
@@ -360,7 +360,7 @@ PyInit__testsinglephase_basic_copy(void)
static PyMethodDef TestMethods_Reinit[] = {
LOOK_UP_SELF_METHODDEF,
SUM_METHODDEF,
- INITIALIZED_METHODDEF,
+ STATE_INITIALIZED_METHODDEF,
{NULL, NULL} /* sentinel */
};
@@ -421,7 +421,7 @@ finally:
static PyMethodDef TestMethods_WithState[] = {
LOOK_UP_SELF_METHODDEF,
SUM_METHODDEF,
- INITIALIZED_METHODDEF,
+ STATE_INITIALIZED_METHODDEF,
{NULL, NULL} /* sentinel */
};