[Python-checkins] python/dist/src/Tools/scripts pickle2db.py,1.4,1.5

montanaro@users.sourceforge.net montanaro@users.sourceforge.net
Thu, 19 Jun 2003 18:01:21 -0700


Update of /cvsroot/python/python/dist/src/Tools/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv29320

Modified Files:
	pickle2db.py 
Log Message:
minor __doc__ string tweakage


Index: pickle2db.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Tools/scripts/pickle2db.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** pickle2db.py	24 Apr 2003 16:02:54 -0000	1.4
--- pickle2db.py	20 Jun 2003 01:01:19 -0000	1.5
***************
*** 5,13 ****
  
  Read the given picklefile as a series of key/value pairs and write to a new
! bsddb database.  If the database already exists, any contents are deleted.
! The optional flags indicate the type of the database (bsddb hash, bsddb
! btree, bsddb recno, anydbm, dbm).  The default is hash.  If a pickle file is
! named it is opened for read access.  If no pickle file is named, the pickle
! input is read from standard input.
  
  Note that recno databases can only contain numeric keys, so you can't dump a
--- 5,13 ----
  
  Read the given picklefile as a series of key/value pairs and write to a new
! database.  If the database already exists, any contents are deleted.  The
! optional flags indicate the type of the database (bsddb hash, bsddb btree,
! bsddb recno, anydbm, dbm).  The default is hash.  If a pickle file is named
! it is opened for read access.  If no pickle file is named, the pickle input
! is read from standard input.
  
  Note that recno databases can only contain numeric keys, so you can't dump a