summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2017-09-07 00:51:08 -0400
committerTres Seaver <tseaver@palladion.com>2017-09-07 00:53:52 -0400
commitcc6601bca8bbc2b0e783b4781ee504a00267e726 (patch)
treefc80b464bbf0618f3ad8c778925646888703c02d
parent0ca02dad9b4adfba94a94f48527d642e35a0bf23 (diff)
downloadrepoze-lru-cc6601bca8bbc2b0e783b4781ee504a00267e726.tar.gz
Garden ReST.
-rw-r--r--CHANGES.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index 8fe21d3..2849b98 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -4,13 +4,13 @@ Changelog
0.7 (unreleased)
----------------
-- Add 'CacheMaker.memoize' to create named, unbounded caches.
+- Add ``CacheMaker.memoize`` to create named, unbounded caches.
-- Add 'UnboundedCache', backed by a dict.
+- Add ``UnboundedCache``, backed by a dict.
-- Add an 'ignore_unhashable_args' option to 'lru_cache': if True, the
+- 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'.
+ a ``TypeError``.
- Expose cache object on the wrapped function, e.g. to allow extracting cache
performance data easily (PR #20).
@@ -24,7 +24,7 @@ Changelog
0.6 (2012-07-12)
----------------
-- Added a 'CacheMaker' helper class: a maker keeps references (by name)
+- Added a ``CacheMaker`` helper class: a maker keeps references (by name)
to the caches it creates, to permit them to be cleared.
- Added statistics to each cache, tracking lookups, hits, misses, and