diff options
Diffstat (limited to 'Doc/library/dbhash.rst')
-rw-r--r-- | Doc/library/dbhash.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/dbhash.rst b/Doc/library/dbhash.rst index 6f9a24f..0b440ab 100644 --- a/Doc/library/dbhash.rst +++ b/Doc/library/dbhash.rst @@ -72,7 +72,7 @@ This module provides an exception and a function: Database Objects ---------------- -The database objects returned by :func:`open` provide the methods common to all +The database objects returned by :func:`.open` provide the methods common to all the DBM-style databases and mapping objects. The following methods are available in addition to the standard methods. @@ -80,7 +80,7 @@ available in addition to the standard methods. .. method:: dbhash.first() It's possible to loop over every key/value pair in the database using this - method and the :meth:`next` method. The traversal is ordered by the databases + method and the :meth:`!next` method. The traversal is ordered by the databases internal hash values, and won't be sorted by the key values. This method returns the starting key. |