[Python-checkins] python/dist/src/Doc/lib libbsddb.tex,1.17,1.18

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Tue Aug 10 21:22:51 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12997

Modified Files:
	libbsddb.tex 
Log Message:
clarify the behavior of the .first() and .last() methods for empty
databases

this should be backported to the release23-maint branch


Index: libbsddb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libbsddb.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** libbsddb.tex	26 Jul 2004 16:33:29 -0000	1.17
--- libbsddb.tex	10 Aug 2004 19:22:48 -0000	1.18
***************
*** 136,139 ****
--- 136,140 ----
  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}
  
***************
*** 154,157 ****
--- 155,159 ----
  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}
  



More information about the Python-checkins mailing list