commit | ba0e49a4648e727d1a16b3ce479499eb39f22311 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Wed Dec 30 02:24:43 2020 +0100 |
committer | GitHub <noreply@github.com> | Wed Dec 30 02:24:43 2020 +0100 |
tree | 6eaa26ebbfdaf063f8b9664d6562abe0c237d8e1 | |
parent | 056c08211b402b4dbc1530a9de9d00ad5309909f [diff] [blame] |
bpo-40137: Fix refleak in _functools_exec() (GH-24006)
diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index b121ec7..1fcaf29 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c
@@ -1436,6 +1436,7 @@ _functools_exec(PyObject *module) Py_DECREF(lru_cache_type); return -1; } + Py_DECREF(lru_cache_type); state->keyobject_type = (PyTypeObject *)PyType_FromModuleAndSpec(module, &keyobject_type_spec, NULL);