This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author rhettinger
Recipients corona10, miss-islington, pablogsal, petr.viktorin, phsilva, rhettinger, serhiy.storchaka, shihai1991, vstinner
Date 2021-04-11.00:55:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1618102503.63.0.2766344633.issue40137@roundup.psfhosted.org>
In-reply-to
Content
State lookups and indirections were added to most performance sensitive code part of the

    _functools_state *state;

    state = get_functools_state_by_type(Py_TYPE(self));
    if (state == NULL) {
        return NULL;
    }
    key = lru_cache_make_key(state, args, kwds, self->typed);

I think it should be removed for Python3.10.  Right now, it is of zero value to users (actually, negative value).
History
Date User Action Args
2021-04-11 00:55:03rhettingersetrecipients: + rhettinger, vstinner, phsilva, petr.viktorin, serhiy.storchaka, corona10, pablogsal, miss-islington, shihai1991
2021-04-11 00:55:03rhettingersetmessageid: <1618102503.63.0.2766344633.issue40137@roundup.psfhosted.org>
2021-04-11 00:55:03rhettingerlinkissue40137 messages
2021-04-11 00:55:02rhettingercreate