This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: bsddb: enable dbopen (file==NULL)
Type: enhancement Stage:
Components: Extension Modules Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: anthonybaxter Nosy List: anthonybaxter, gvanrossum, rushing
Priority: normal Keywords:

Created on 2002-02-07 19:00 by rushing, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (4)
msg9172 - (view) Author: Sam Rushing (rushing) * Date: 2002-02-07 19:00
dbopen(): if the file argument is NULL, the library 
will use a temporary file.  this is useful if you want 
that, or if you want to specify a large cache so that 
it never actually touches the disk. [i.e., in-memory 
hash/bt]
I've done this by replacing the "s" with a "z" in the 
arg specs for the three open functions.  Seems to work.

-Sam
msg9173 - (view) Author: Guido van Rossum (gvanrossum) * (Python committer) Date: 2002-02-08 21:49
Logged In: YES 
user_id=6380

Can you submit a patch to the patch manager?
msg9174 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2002-04-18 07:40
Logged In: YES 
user_id=29957

see patch #545523
msg9175 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2002-04-23 03:48
Logged In: YES 
user_id=29957

Checked into the trunk. Considering this for inclusion
in 2.2.2.
History
Date User Action Args
2022-04-10 16:04:57adminsetgithub: 36042
2002-02-07 19:00:37rushingcreate