Staging
v0.5.1
https://github.com/python/cpython
Revision ef5781b8c8b18f4109d253f7a416cacd57ca40fc authored by Fred Drake on 25 September 2000, 17:23:04 UTC, committed by Fred Drake on 25 September 2000, 17:23:04 UTC
list of module synopses at the front of the chapter; based on a comment
from Aahz <aahz@panix.com>.
1 parent 7198ba9
Raw File
Tip revision: ef5781b8c8b18f4109d253f7a416cacd57ca40fc authored by Fred Drake on 25 September 2000, 17:23:04 UTC
Add obsolescence note to the module descriptions that get added to the
Tip revision: ef5781b
dbhash.py
"""Provide a (g)dbm-compatible interface to bsdhash.hashopen."""

import bsddb

error = bsddb.error                     # Exported for anydbm

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