mirror of
https://github.com/python/cpython.git
synced 2025-09-16 21:56:14 +00:00
only clear a module's __dict__ if the module is the only one with a reference to it #7140
This commit is contained in:
parent
96e319e5ac
commit
196b0925ca
3 changed files with 15 additions and 1 deletions
|
@ -175,7 +175,10 @@ module_dealloc(PyModuleObject *m)
|
|||
{
|
||||
PyObject_GC_UnTrack(m);
|
||||
if (m->md_dict != NULL) {
|
||||
_PyModule_Clear((PyObject *)m);
|
||||
/* If we are the only ones holding a reference, we can clear
|
||||
the dictionary. */
|
||||
if (Py_REFCNT(m->md_dict) == 1)
|
||||
_PyModule_Clear((PyObject *)m);
|
||||
Py_DECREF(m->md_dict);
|
||||
}
|
||||
Py_TYPE(m)->tp_free((PyObject *)m);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue