summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-11-12 19:54:32 -0500
committerTres Seaver <tseaver@palladion.com>2016-11-12 19:54:32 -0500
commit59a2ea179c83a22f92e78324a79f3fd43de2cb99 (patch)
treeebd1932763829d9fe085b5516b99c155314cfd8b
parenta913a432fd0ce1af5b3039c8f3065b6bbd886878 (diff)
downloadrepoze-lru-59a2ea179c83a22f92e78324a79f3fd43de2cb99.tar.gz
Garden changelog.
-rw-r--r--CHANGES.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index b95392c..3a29f9a 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,6 +4,14 @@ Changelog
0.7 (unreleased)
----------------
+- Add 'CacheMaker.memoize' to create named, unbounded caches.
+
+- Add 'UnboundedCache', backed by a dict.
+
+- Add an 'ignore_unhashable_args' option to 'lru_cache': if True, the
+ cache will discard arguments which cannot be hashed, rather than raising
+ a 'TypeError'.
+
- Expose cache object on the wrapped function, e.g. to allow extracting cache
performance data easily (PR #20).