summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-08-10 19:22:48 (GMT)
committerFred Drake <fdrake@acm.org>2004-08-10 19:22:48 (GMT)
commitba100c98adf59baa695eb30e561e16ebe0fae4d6 (patch)
treebb790456e987f715df8eaa7dfa4209dd86edd276 /Doc/lib
parentf54ac7e0ee667b3263e35688bed63bf77e9b18d1 (diff)
downloadcpython-ba100c98adf59baa695eb30e561e16ebe0fae4d6.zip
cpython-ba100c98adf59baa695eb30e561e16ebe0fae4d6.tar.gz
cpython-ba100c98adf59baa695eb30e561e16ebe0fae4d6.tar.bz2
clarify the behavior of the .first() and .last() methods for empty
databases this should be backported to the release23-maint branch
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libbsddb.tex2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/lib/libbsddb.tex b/Doc/lib/libbsddb.tex
index bb1e6b0..a25d39b 100644
--- a/Doc/lib/libbsddb.tex
+++ b/Doc/lib/libbsddb.tex
@@ -135,6 +135,7 @@ database.
\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, except in the case of B-Tree databases.
+This method raises \exception{bsddb.error} if the database is empty.
\end{methoddesc}
\begin{methoddesc}{next}{}
@@ -153,6 +154,7 @@ with \function{hashopen()}).
Set the cursor to the last 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()}).
+This method raises \exception{bsddb.error} if the database is empty.
\end{methoddesc}
\begin{methoddesc}{sync}{}