mirror of
https://github.com/python/cpython.git
synced 2025-08-14 22:01:08 +00:00

svn+ssh://pythondev@svn.python.org/python/trunk ........ r77310 | antoine.pitrou | 2010-01-05 01:22:44 +0200 (Tue, 05 Jan 2010) | 4 lines Issue #7092: Fix the DeprecationWarnings emitted by the standard library when using the -3 flag. Patch by Florent Xicluna. ........ r77311 | antoine.pitrou | 2010-01-05 01:28:16 +0200 (Tue, 05 Jan 2010) | 3 lines Kill a couple of "<>" ........
18 lines
498 B
Python
18 lines
498 B
Python
"""Provide a (g)dbm-compatible interface to bsddb.hashopen."""
|
|
|
|
import sys
|
|
import warnings
|
|
warnings.warnpy3k("in 3.x, the dbhash module has been removed", stacklevel=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)
|