summaryrefslogtreecommitdiffstats
path: root/Doc/library/shelve.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-07-26 14:19:57 (GMT)
committerGeorg Brandl <georg@python.org>2009-07-26 14:19:57 (GMT)
commit9fa61bb37d68225c827aa7809382ea701c264db5 (patch)
tree7a086015c9e4ecbb02ad38895cf7dcc4cb7be605 /Doc/library/shelve.rst
parent74f8fc0b1bccc971a3055b2e364c4a2db5123d50 (diff)
downloadcpython-9fa61bb37d68225c827aa7809382ea701c264db5.zip
cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.gz
cpython-9fa61bb37d68225c827aa7809382ea701c264db5.tar.bz2
#6577: fix (hopefully) all links to builtin instead of module/class-specific objects.
Diffstat (limited to 'Doc/library/shelve.rst')
-rw-r--r--Doc/library/shelve.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst
index 4e18ab1..503db0f 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -108,7 +108,7 @@ Restrictions
.. class:: BsdDbShelf(dict[, protocol=None[, writeback=False]])
- A subclass of :class:`Shelf` which exposes :meth:`first`, :meth:`next`,
+ A subclass of :class:`Shelf` which exposes :meth:`first`, :meth:`!next`,
:meth:`previous`, :meth:`last` and :meth:`set_location` which are available in
the :mod:`bsddb` module but not in other database modules. The *dict* object
passed to the constructor must support those methods. This is generally
@@ -122,7 +122,7 @@ Restrictions
A subclass of :class:`Shelf` which accepts a *filename* instead of a dict-like
object. The underlying file will be opened using :func:`anydbm.open`. By
default, the file will be created and opened for both read and write. The
- optional *flag* parameter has the same interpretation as for the :func:`open`
+ optional *flag* parameter has the same interpretation as for the :func:`.open`
function. The optional *protocol* and *writeback* parameters have the same
interpretation as for the :class:`Shelf` class.
@@ -174,8 +174,8 @@ object)::
BSD ``db`` database interface.
Module :mod:`dbhash`
- Thin layer around the :mod:`bsddb` which provides an :func:`open` function like
- the other database modules.
+ Thin layer around the :mod:`bsddb` which provides an :func:`~dbhash.open`
+ function like the other database modules.
Module :mod:`dbm`
Standard Unix database interface.