[Python-checkins] python/dist/src/Doc/lib libdbhash.tex, 1.7, 1.8 libbsddb.tex, 1.12, 1.13

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Tue Sep 16 17:45:24 EDT 2003


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

Modified Files:
	libdbhash.tex libbsddb.tex 
Log Message:
Minor fixups

Index: libdbhash.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libdbhash.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** libdbhash.tex	12 Sep 2003 06:33:37 -0000	1.7
--- libdbhash.tex	16 Sep 2003 21:45:22 -0000	1.8
***************
*** 74,78 ****
  \begin{verbatim}
  print db.first()
! for i in xrange(1, len(d)):
      print db.next()
  \end{verbatim}
--- 74,78 ----
  \begin{verbatim}
  print db.first()
! for i in xrange(1, len(db)):
      print db.next()
  \end{verbatim}

Index: libbsddb.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libbsddb.tex,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** libbsddb.tex	12 Sep 2003 06:33:37 -0000	1.12
--- libbsddb.tex	16 Sep 2003 21:45:22 -0000	1.13
***************
*** 103,107 ****
  Once instantiated, hash, btree and record objects support
  the same methods as dictionaries.  In addition, they support
! the following methods:
  
  \begin{methoddesc}{close}{}
--- 103,108 ----
  Once instantiated, hash, btree and record objects support
  the same methods as dictionaries.  In addition, they support
! the methods listed below.
! \versionchanged[Added dictionary methods]{2.3.1}
  
  \begin{methoddesc}{close}{}





More information about the Python-checkins mailing list