self.add_module_cleanup(name)
with self.subTest(name):
loaded = self.load(name)
+ self.addCleanup(loaded.module._clear_module_state)
self.check_common(loaded)
self.assertIsNot(loaded.snapshot.state_initialized, None)
# Keep a reference around.
basic = self.load(self.NAME)
- for name in [
- f'{self.NAME}_with_reinit', # m_size == 0
- f'{self.NAME}_with_state', # m_size > 0
+ for name, has_state in [
+ (f'{self.NAME}_with_reinit', False), # m_size == 0
+ (f'{self.NAME}_with_state', True), # m_size > 0
]:
self.add_module_cleanup(name)
- with self.subTest(name):
+ with self.subTest(name=name, has_state=has_state):
loaded = self.load(name)
+ if has_state:
+ self.addCleanup(loaded.module._clear_module_state)
+
reloaded = self.re_load(name, loaded.module)
+ if has_state:
+ self.addCleanup(reloaded.module._clear_module_state)
self.check_common(loaded)
self.check_common(reloaded)
basic__clear_globals_doc}
+PyDoc_STRVAR(basic__clear_module_state_doc, "_clear_module_state()\n\
+\n\
+Free the module state and set it to uninitialized.");
+
+static PyObject *
+basic__clear_module_state(PyObject *self, PyObject *Py_UNUSED(ignored))
+{
+ module_state *state = get_module_state(self);
+ if (state != NULL) {
+ clear_state(state);
+ }
+ Py_RETURN_NONE;
+}
+
+#define _CLEAR_MODULE_STATE_METHODDEF \
+ {"_clear_module_state", basic__clear_module_state, METH_NOARGS, \
+ basic__clear_module_state_doc}
+
+
/*********************************************/
/* the _testsinglephase module (and aliases) */
/*********************************************/
/* the _testsinglephase_with_state module */
/******************************************/
-/* This ia less typical of legacy extensions in the wild:
+/* This is less typical of legacy extensions in the wild:
- single-phase init (same as _testsinglephase above)
- has some module state
- supports repeated initialization
LOOK_UP_SELF_METHODDEF,
SUM_METHODDEF,
STATE_INITIALIZED_METHODDEF,
+ _CLEAR_MODULE_STATE_METHODDEF,
{NULL, NULL} /* sentinel */
};