diff options
author | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2020-05-12 00:00:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-12 00:00:53 (GMT) |
commit | 21cdb711e3b1975398c54141e519ead02670610e (patch) | |
tree | bbe4a1006ff4a8d3f6e280eb556b7c25cccb1f4c /Misc | |
parent | 4804b5b3df82e7892ca0550b02f902bcfc16bb48 (diff) | |
download | cpython-21cdb711e3b1975398c54141e519ead02670610e.zip cpython-21cdb711e3b1975398c54141e519ead02670610e.tar.gz cpython-21cdb711e3b1975398c54141e519ead02670610e.tar.bz2 |
bpo-40571: Make lru_cache(maxsize=None) more discoverable (GH-20019)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-09-15-38-25.bpo-40571.kOXZGC.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-09-15-38-25.bpo-40571.kOXZGC.rst b/Misc/NEWS.d/next/Library/2020-05-09-15-38-25.bpo-40571.kOXZGC.rst new file mode 100644 index 0000000..476770f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-09-15-38-25.bpo-40571.kOXZGC.rst @@ -0,0 +1,2 @@ +Added functools.cache() as a simpler, more discoverable way to access the +unbounded cache variant of lru_cache(maxsize=None). |