[Python-checkins] python/dist/src/Doc/lib libbsddb.tex,1.6,1.7

anthonybaxter@sourceforge.net anthonybaxter@sourceforge.net
Mon, 22 Apr 2002 19:11:11 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29550/Doc/lib

Modified Files:
	libbsddb.tex 
Log Message:
SF patch  [ 545523 ] patch for 514433 bsddb.dbopen (NULL)
closes SF #514433
 
can now pass 'None' as the filename for the bsddb.*open functions,
and you'll get an in-memory temporary store.
 
docs are ripped out of the bsddb dbopen man page. Fred may want to
clean them up. 

Considering this for 2.2, but not 2.1.


Index: libbsddb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libbsddb.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** libbsddb.tex	5 Jan 2001 06:44:19 -0000	1.6
--- libbsddb.tex	23 Apr 2002 02:11:03 -0000	1.7
***************
*** 38,42 ****
                             cachesize\optional{, hash\optional{,
                             lorder}}}}}}}}}
! Open the hash format file named \var{filename}.  The optional
  \var{flag} identifies the mode used to open the file.  It may be
  \character{r} (read only), \character{w} (read-write),
--- 38,44 ----
                             cachesize\optional{, hash\optional{,
                             lorder}}}}}}}}}
! Open the hash format file named \var{filename}.  Files never intended
! to be preserved on disk may be created by passing \code{None} as the 
! \var{filename}.  The optional
  \var{flag} identifies the mode used to open the file.  It may be
  \character{r} (read only), \character{w} (read-write),
***************
*** 52,56 ****
  minkeypage\optional{, psize\optional{, lorder}}}}}}}}}
  
! Open the btree format file named \var{filename}.  The optional
  \var{flag} identifies the mode used to open the file.  It may be
  \character{r} (read only), \character{w} (read-write),
--- 54,60 ----
  minkeypage\optional{, psize\optional{, lorder}}}}}}}}}
  
! Open the btree format file named \var{filename}.  Files never intended 
! to be preserved on disk may be created by passing \code{None} as the 
! \var{filename}.  The optional
  \var{flag} identifies the mode used to open the file.  It may be
  \character{r} (read only), \character{w} (read-write),
***************
*** 66,70 ****
  reclen\optional{, bval\optional{, bfname}}}}}}}}}}
  
! Open a DB record format file named \var{filename}.  The optional
  \var{flag} identifies the mode used to open the file.  It may be
  \character{r} (read only), \character{w} (read-write),
--- 70,76 ----
  reclen\optional{, bval\optional{, bfname}}}}}}}}}}
  
! Open a DB record format file named \var{filename}.  Files never intended 
! to be preserved on disk may be created by passing \code{None} as the 
! \var{filename}.  The optional
  \var{flag} identifies the mode used to open the file.  It may be
  \character{r} (read only), \character{w} (read-write),