diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index 78706b6ec3c..fd4b4c268cc 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -1195,6 +1195,7 @@ lru_cache_new(PyTypeObject *type, PyObject *args, PyObject *kw) obj->maxsize = maxsize; Py_INCREF(cache_info_type); obj->cache_info_type = cache_info_type; + obj->dict = NULL; return (PyObject *)obj; }