[Python-checkins] python/dist/src/Misc NEWS,1.391,1.392

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


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

Modified Files:
	NEWS 
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: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.391
retrieving revision 1.392
diff -C2 -d -r1.391 -r1.392
*** NEWS	21 Apr 2002 07:30:30 -0000	1.391
--- NEWS	23 Apr 2002 02:11:05 -0000	1.392
***************
*** 65,68 ****
--- 65,72 ----
  Extension modules
  
+ - The bsddb.*open functions can now take 'None' as a filename. 
+   This will create a temporary in-memory bsddb that won't be
+   written to disk. 
+ 
  - posix.mknod was added.