mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00

added test script and expected output file as well this closes patch 103297. __all__ attributes will be added to other modules without first submitting a patch, just adding the necessary line to the test script to verify more-or-less correct implementation.
10 lines
248 B
Python
10 lines
248 B
Python
"""Provide a (g)dbm-compatible interface to bsdhash.hashopen."""
|
|
|
|
import bsddb
|
|
|
|
__all__ = ["error","open"]
|
|
|
|
error = bsddb.error # Exported for anydbm
|
|
|
|
def open(file, flag, mode=0666):
|
|
return bsddb.hashopen(file, flag, mode)
|