diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-04 05:39:34 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-04 05:39:34 (GMT) |
commit | 8de959252a9823d9f7014222118551d1f351a7f5 (patch) | |
tree | 9d1bf326933a6c6a41339dc0c3253634c559309b /Doc | |
parent | b20df9a89a3735d9cbf0330ceef0100c323fdd93 (diff) | |
download | cpython-8de959252a9823d9f7014222118551d1f351a7f5.zip cpython-8de959252a9823d9f7014222118551d1f351a7f5.tar.gz cpython-8de959252a9823d9f7014222118551d1f351a7f5.tar.bz2 |
Add helpful link.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/shelve.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst index 1776b7d..b5e7eae 100644 --- a/Doc/library/shelve.rst +++ b/Doc/library/shelve.rst @@ -51,6 +51,12 @@ One additional method is supported: disk, if feasible. This is called automatically when the shelf is closed with :meth:`close`. +.. seealso:: + + `Persistent dictionary recipe <http://code.activestate.com/recipes/576642/>`_ + with widely supported storage formats and having the speed of native + dictionaries. + Restrictions ------------ |