Message284971
Since the ordering of keyword arguments is now guaranteed, the LRU cache doesn't need to sort any longer.
The will give a small change in behavior that I don't care about. A call f(a=1, b=2) would now be cached separately from f(b=2, a=1). That won't arise often and isn't really different than the status quo where f(1, b=2) or f(1, 2) are already cached separately. Overall it is a net win by saving the sorting step on every call. |
|
Date |
User |
Action |
Args |
2017-01-08 10:01:30 | rhettinger | set | recipients:
+ rhettinger, serhiy.storchaka |
2017-01-08 10:01:29 | rhettinger | set | messageid: <1483869689.96.0.118801671139.issue29203@psf.upfronthosting.co.za> |
2017-01-08 10:01:29 | rhettinger | link | issue29203 messages |
2017-01-08 10:01:29 | rhettinger | create | |
|