diff options
author | Raymond Hettinger <python@rcn.com> | 2009-04-04 05:39:52 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-04-04 05:39:52 (GMT) |
commit | 65c9eb224803c5416eb11f48c0a1e621a9737a7d (patch) | |
tree | 9844c3cacb94f296adf4ef75ac4d402d1af58fd0 /Doc | |
parent | 8a08a667b46ec91f3adf26e495b5acfdb736c166 (diff) | |
download | cpython-65c9eb224803c5416eb11f48c0a1e621a9737a7d.zip cpython-65c9eb224803c5416eb11f48c0a1e621a9737a7d.tar.gz cpython-65c9eb224803c5416eb11f48c0a1e621a9737a7d.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 44eff59..a023504 100644 --- a/Doc/library/shelve.rst +++ b/Doc/library/shelve.rst @@ -48,6 +48,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 ------------ |