Staging
v0.5.1
https://github.com/python/cpython
Revision b383e806b623503eb0713ba1d8b5469e8fe7e86d authored by Barry Warsaw on 22 February 2012, 22:26:50 UTC, committed by Barry Warsaw on 22 February 2012, 22:26:50 UTC
    http://hg.python.org/cpython/rev/48705250232c
    changeset:   75187:48705250232c
    branch:      2.7
    parent:      75184:9a1d902714ae
    user:        Antoine Pitrou <solipsis@pitrou.net>
    date:        Wed Feb 22 22:16:25 2012 +0100
1 parent 56fd661
Raw File
Tip revision: b383e806b623503eb0713ba1d8b5469e8fe7e86d authored by Barry Warsaw on 22 February 2012, 22:26:50 UTC
Back port from 2.7:
Tip revision: b383e80
dbhash.py
"""Provide a (g)dbm-compatible interface to bsddb.hashopen."""

import sys
if sys.py3kwarning:
    import warnings
    warnings.warnpy3k("in 3.x, the dbhash module has been removed", DeprecationWarning, 2)
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=0666):
    return bsddb.hashopen(file, flag, mode)
back to top