]> granicus.if.org Git - python/commitdiff
Clarifications on the first(), next(), and previous() functions, based
authorFred Drake <fdrake@acm.org>
Fri, 23 Apr 1999 20:32:59 +0000 (20:32 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 23 Apr 1999 20:32:59 +0000 (20:32 +0000)
on comments from Detlef Lannert <lannert@lannert.rz.uni-duesseldorf.de>.

Doc/lib/libbsddb.tex

index 1af4bdf4bad3c47a703ad844e913208dcf81f3f2..cd0dc07880381a3bc2a2e70f06c8447397de6dd9 100644 (file)
@@ -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}{}