summaryrefslogtreecommitdiffstats
path: root/Lib/dbhash.py
blob: 3c60812a07b8bf660c7b0e94bd90ce58c5b2b480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""Provide a (g)dbm-compatible interface to bsddb.hashopen."""

import sys
try:
    import bsddb
except ImportError:
    # prevent a second import of this module from spuriously succeeding
    del sys.modules[__name__]
    raise

__all__ = ["error","open"]

error = bsddb.error                     # Exported for anydbm

def open(file, flag = 'r', mode=0o666):
    return bsddb.hashopen(file, flag, mode)