Message390756
| 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). |
|