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