summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb/dbutils.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2003-09-21 00:08:14 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2003-09-21 00:08:14 (GMT)
commit41631e8f668c9c2c724731d207edcc39c6fcf38c (patch)
tree89612b4cc0c0a621cdd71cf4fa9a3df18e815437 /Lib/bsddb/dbutils.py
parentcec1b3f6a7e899179c6463145ceff47a6c5bc805 (diff)
downloadcpython-41631e8f668c9c2c724731d207edcc39c6fcf38c.zip
cpython-41631e8f668c9c2c724731d207edcc39c6fcf38c.tar.gz
cpython-41631e8f668c9c2c724731d207edcc39c6fcf38c.tar.bz2
Adds basic support for BerkeleyDB 4.2.x. Compiles and passes tests; new
features in BerkeleyDB not exposed. notably: the DB_MPOOLFILE interface has not yet been wrapped in an object. Adds support for building and installing bsddb3 in python2.3 that has an older version of this module installed as bsddb without conflicts. The pybsddb.sf.net build/packaged version of the module uses a dynamicly loadable module called _pybsddb rather than _bsddb.
Diffstat (limited to 'Lib/bsddb/dbutils.py')
-rw-r--r--Lib/bsddb/dbutils.py7
1 files changed, 1 insertions, 6 deletions
diff --git a/Lib/bsddb/dbutils.py b/Lib/bsddb/dbutils.py
index 3568b44..3f63842 100644
--- a/Lib/bsddb/dbutils.py
+++ b/Lib/bsddb/dbutils.py
@@ -26,12 +26,7 @@
#
from time import sleep as _sleep
-try:
- # For Python 2.3
- from bsddb import db
-except ImportError:
- # For earlier Pythons w/distutils pybsddb
- from bsddb3 import db
+import db
# always sleep at least N seconds between retrys
_deadlock_MinSleepTime = 1.0/64