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 rhettinger, serhiy.storchaka
Date 2017-01-08.10:01:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483869689.96.0.118801671139.issue29203@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2017-01-08 10:01:30rhettingersetrecipients: + rhettinger, serhiy.storchaka
2017-01-08 10:01:29rhettingersetmessageid: <1483869689.96.0.118801671139.issue29203@psf.upfronthosting.co.za>
2017-01-08 10:01:29rhettingerlinkissue29203 messages
2017-01-08 10:01:29rhettingercreate