From: Guido van Rossum Date: Thu, 25 Jan 1996 18:33:39 +0000 (+0000) Subject: backward compatible interface for bsddb X-Git-Tag: v1.4b1~385 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6700142d832d1ba1a5724878142ea081a87353f5;p=python backward compatible interface for bsddb --- diff --git a/Lib/dbhash.py b/Lib/dbhash.py new file mode 100644 index 0000000000..57c6194b6c --- /dev/null +++ b/Lib/dbhash.py @@ -0,0 +1,8 @@ +"""Provide a (g)dbm-compatible interface to bsdhash.hashopen.""" + +import bsddb + +error = bsddb.error + +def open(file, flag, mode): + return bsddb.hashopen(file, flag, mode)