mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
9 lines
220 B
Python
9 lines
220 B
Python
"""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)
|