diff options
author | doko@ubuntu.com <doko@ubuntu.com> | 2013-03-19 21:46:29 (GMT) |
---|---|---|
committer | doko@ubuntu.com <doko@ubuntu.com> | 2013-03-19 21:46:29 (GMT) |
commit | 4950a3b6ccb91e0ffe937374836caa825e93c742 (patch) | |
tree | c21a8a4621c1f29eccdebbeca17dbdb0764e20d7 /Lib/bsddb/__init__.py | |
parent | 868f0aac37cf6c879471c3b8e65e6db623460ce5 (diff) | |
download | cpython-4950a3b6ccb91e0ffe937374836caa825e93c742.zip cpython-4950a3b6ccb91e0ffe937374836caa825e93c742.tar.gz cpython-4950a3b6ccb91e0ffe937374836caa825e93c742.tar.bz2 |
- Issue #17477: Update the bsddb module to pybsddb 5.3.0, supporting
db-5.x, and dropping support for db-4.1 and db-4.2.
Diffstat (limited to 'Lib/bsddb/__init__.py')
-rw-r--r-- | Lib/bsddb/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/bsddb/__init__.py b/Lib/bsddb/__init__.py index ed4deea..13c9c27 100644 --- a/Lib/bsddb/__init__.py +++ b/Lib/bsddb/__init__.py @@ -33,7 +33,7 @@ #---------------------------------------------------------------------- -"""Support for Berkeley DB 4.1 through 4.8 with a simple interface. +"""Support for Berkeley DB 4.3 through 5.3 with a simple interface. For the full featured object oriented interface use the bsddb.db module instead. It mirrors the Oracle Berkeley DB C API. @@ -138,7 +138,7 @@ class _iter_mixin(MutableMapping): except _bsddb.DBCursorClosedError: # the database was modified during iteration. abort. pass -# When Python 2.3 not supported in bsddb3, we can change this to "finally" +# When Python 2.4 not supported in bsddb3, we can change this to "finally" except : self._in_iter -= 1 raise @@ -181,7 +181,7 @@ class _iter_mixin(MutableMapping): except _bsddb.DBCursorClosedError: # the database was modified during iteration. abort. pass -# When Python 2.3 not supported in bsddb3, we can change this to "finally" +# When Python 2.4 not supported in bsddb3, we can change this to "finally" except : self._in_iter -= 1 raise |