aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2014-11-11 06:43:58 +0100
committerThomas Kemmer <tkemmer@computer.org>2014-11-11 06:43:58 +0100
commit8dd276486cc814c1fd7b66e710a757249695390c (patch)
tree0cabc1b2ccf998479e04a0572281b21b16fd89c2 /README.rst
parent6c829a41d5e0b78f40bcc77ef35f17ad443cc75a (diff)
downloadcachetools-8dd276486cc814c1fd7b66e710a757249695390c.tar.gz
Fix #20: Deprecate TTLCache.ExpiredError
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.rst b/README.rst
index 3b69c69..c14e124 100644
--- a/README.rst
+++ b/README.rst
@@ -18,6 +18,7 @@ including a variant of the Python 3 Standard Library
>>> cache['second']
2
>>> cache['fourth'] = 4
+ >>> cache
LRUCache([('second', 2), ('fourth', 4)], maxsize=2, currsize=2)