Message390756
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). |
|
Date |
User |
Action |
Args |
2021-04-11 00:55:03 | rhettinger | set | recipients:
+ rhettinger, vstinner, phsilva, petr.viktorin, serhiy.storchaka, corona10, pablogsal, miss-islington, shihai1991 |
2021-04-11 00:55:03 | rhettinger | set | messageid: <1618102503.63.0.2766344633.issue40137@roundup.psfhosted.org> |
2021-04-11 00:55:03 | rhettinger | link | issue40137 messages |
2021-04-11 00:55:02 | rhettinger | create | |
|