Revision 9065ea36deb5812654c1959413a92cfb18ad3b5a authored by Fred Drake on 29 March 1999, 20:25:40 UTC, committed by Fred Drake on 29 March 1999, 20:25:40 UTC
Patch largely based on changes by Andrew Dalke, as discussed in the
distutils-sig.
1 parent 3527f59
Raw File
dbhash.py
"""Provide a (g)dbm-compatible interface to bsdhash.hashopen."""

import bsddb

error = bsddb.error

def open(file, flag, mode=0666):
    return bsddb.hashopen(file, flag, mode)
back to top