Quick update to the README file. For intros and books we now point to
[python/dscho.git] / Lib / dbhash.py
blobff51630bb338eac23ac4ee3a4f240be6e6563a83
1 """Provide a (g)dbm-compatible interface to bsdhash.hashopen."""
3 import bsddb
5 error = bsddb.error # Exported for anydbm
7 def open(file, flag, mode=0666):
8 return bsddb.hashopen(file, flag, mode)