diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-23 20:32:59 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-23 20:32:59 (GMT) |
commit | 29cf682b71e8b3724ea1b42e25bda5b2755729d8 (patch) | |
tree | 72480b19e5680e531da65fd396dbde07ac7b4a83 /Doc/lib/libbsddb.tex | |
parent | 861192120beae4108698e601472654fb45e1c91f (diff) | |
download | cpython-29cf682b71e8b3724ea1b42e25bda5b2755729d8.zip cpython-29cf682b71e8b3724ea1b42e25bda5b2755729d8.tar.gz cpython-29cf682b71e8b3724ea1b42e25bda5b2755729d8.tar.bz2 |
Clarifications on the first(), next(), and previous() functions, based
on comments from Detlef Lannert <lannert@lannert.rz.uni-duesseldorf.de>.
Diffstat (limited to 'Doc/lib/libbsddb.tex')
-rw-r--r-- | Doc/lib/libbsddb.tex | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Doc/lib/libbsddb.tex b/Doc/lib/libbsddb.tex index 1af4bdf..cd0dc07 100644 --- a/Doc/lib/libbsddb.tex +++ b/Doc/lib/libbsddb.tex @@ -95,18 +95,19 @@ Set the cursor to the item indicated by the key and return it. \begin{methoddesc}{first}{} Set the cursor to the first item in the DB file and return it. The order of -keys in the file is unspecified. +keys in the file is unspecified, except in the case of B-Tree databases. \end{methoddesc} \begin{methoddesc}{next}{} Set the cursor to the next item in the DB file and return it. The order of -keys in the file is unspecified. +keys in the file is unspecified, except in the case of B-Tree databases. \end{methoddesc} \begin{methoddesc}{previous}{} Set the cursor to the first item in the DB file and return it. The -order of keys in the file is unspecified. This is not supported on -hashtable databases (those opened with \function{hashopen()}). +order of keys in the file is unspecified, except in the case of B-Tree +databases. This is not supported on hashtable databases (those opened +with \function{hashopen()}). \end{methoddesc} \begin{methoddesc}{last}{} |