diff options
author | Barry Warsaw <barry@python.org> | 2002-12-30 20:53:52 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-12-30 20:53:52 (GMT) |
commit | 9a0d779c7d39ba5f4666eac7c3f913720198e0f8 (patch) | |
tree | 1c4c47178b74e5b8564c625d79a940107c217b04 /Lib/bsddb/__init__.py | |
parent | 0a26235e671064ddda5625c1981aa2edf91bb7a8 (diff) | |
download | cpython-9a0d779c7d39ba5f4666eac7c3f913720198e0f8.zip cpython-9a0d779c7d39ba5f4666eac7c3f913720198e0f8.tar.gz cpython-9a0d779c7d39ba5f4666eac7c3f913720198e0f8.tar.bz2 |
Port BerkeleyDB 4.1 support from the pybsddb project. bsddb is now at
version 4.1.1 and works with up to BerkeleyDB 4.1.25.
Diffstat (limited to 'Lib/bsddb/__init__.py')
-rw-r--r-- | Lib/bsddb/__init__.py | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Lib/bsddb/__init__.py b/Lib/bsddb/__init__.py index 1bec33b..a43aff7 100644 --- a/Lib/bsddb/__init__.py +++ b/Lib/bsddb/__init__.py @@ -33,14 +33,7 @@ #---------------------------------------------------------------------- -""" -This package initialization module provides a compatibility interface -that should enable bsddb3 to be a near drop-in replacement for the original -old bsddb module. The functions and classes provided here are all -wrappers around the new functionality provided in the bsddb3.db module. - -People interested in the more advanced capabilites of Berkeley DB 3.x -should use the bsddb3.db module directly. +"""Support for BerkeleyDB 3.1 through 4.1. """ try: @@ -55,7 +48,7 @@ except ImportError: _db = _bsddb __version__ = _db.__version__ -error = _db.DBError # So bsddb3.error will mean something... +error = _db.DBError # So bsddb.error will mean something... #---------------------------------------------------------------------- |