summaryrefslogtreecommitdiffstats
path: root/Lib/bsddb/db.py
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2002-11-19 17:48:49 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2002-11-19 17:48:49 (GMT)
commit7a3bae410df3dd0032509b97077d0c4d98276fdd (patch)
treeec7d16e459de34e96981cf92543bb05d29265738 /Lib/bsddb/db.py
parent1c6b1a2b4ea38955a3f0514f4709bafd0be96c5e (diff)
downloadcpython-7a3bae410df3dd0032509b97077d0c4d98276fdd.zip
cpython-7a3bae410df3dd0032509b97077d0c4d98276fdd.tar.gz
cpython-7a3bae410df3dd0032509b97077d0c4d98276fdd.tar.bz2
Replace bsddb3 and _db occurrences.
Diffstat (limited to 'Lib/bsddb/db.py')
-rw-r--r--Lib/bsddb/db.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/bsddb/db.py b/Lib/bsddb/db.py
index b4365d0..c1749df 100644
--- a/Lib/bsddb/db.py
+++ b/Lib/bsddb/db.py
@@ -37,8 +37,8 @@
# case we ever want to augment the stuff in _db in any way. For now
# it just simply imports everything from _db.
-from _db import *
-from _db import __version__
+from _bsddb import *
+from _bsddb import __version__
if version() < (3, 1, 0):
raise ImportError, "BerkeleyDB 3.x symbols not found. Perhaps python was statically linked with an older version?"