[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.127,1.128

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Fri, 07 Mar 2003 07:45:19 -0800


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

Modified Files:
	whatsnew23.tex 
Log Message:
Add a little more verbiage about the bsddb module/package change.  It's
clear from recent discussions on c.l.py that people are a bit confused about
the differences between the old bsddb, the new bssdb, the bsddb3/PyBSDDB
package and changes to file formats.  Tried to clarify the issues.


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.127
retrieving revision 1.128
diff -C2 -d -r1.127 -r1.128
*** whatsnew23.tex	2 Mar 2003 02:31:58 -0000	1.127
--- whatsnew23.tex	7 Mar 2003 15:45:15 -0000	1.128
***************
*** 1267,1271 ****
  \module{bsddb} package is intended to be compatible with the 
  old module, so be sure to file bugs if you discover any
! incompatibilities.
   
  \item The Distutils \class{Extension} class now supports
--- 1267,1278 ----
  \module{bsddb} package is intended to be compatible with the 
  old module, so be sure to file bugs if you discover any
! incompatibilities.  When upgrading to Python 2.3, if you also change
! the underlying BerkeleyDB library, you will almost certainly have to
! convert your database files to the new version.  You can do this
! fairly easily with the new scripts \file{db2pickle.py} and
! \file{pickle2db.py} which you will find in the distribution's
! Tools/scripts directory.  If you've already been using the PyBSDDB
! package, importing it as \module{bsddb3}, you will have to change your
! \code{import} statements.
   
  \item The Distutils \class{Extension} class now supports