Discussion:
[Python-3000-checkins] r66313 - python/branches/py3k/Doc/library/dbm.rst
benjamin.peterson
2008-09-08 21:35:37 UTC
Permalink
Author: benjamin.peterson
Date: Mon Sep 8 23:35:37 2008
New Revision: 66313

Log:
mention that bsddb3 can be gotten as a third party addon

Modified:
python/branches/py3k/Doc/library/dbm.rst

Modified: python/branches/py3k/Doc/library/dbm.rst
==============================================================================
--- python/branches/py3k/Doc/library/dbm.rst (original)
+++ python/branches/py3k/Doc/library/dbm.rst Mon Sep 8 23:35:37 2008
@@ -5,9 +5,10 @@
:synopsis: Interfaces to various Unix "database" formats.

:mod:`dbm` is a generic interface to variants of the DBM database ---
-:mod:`dbm.bsd` (requires :mod:`bsddb`), :mod:`dbm.gnu`, or :mod:`dbm.ndbm`. If
-none of these modules is installed, the slow-but-simple implementation in module
-:mod:`dbm.dumb` will be used.
+ :mod:`dbm.gnu` or :mod:`dbm.ndbm`. If none of these modules is installed, the
+ slow-but-simple implementation in module :mod:`dbm.dumb` will be used. There
+ is a `third party interface <http://www.jcea.es/programacion/pybsddb.htm>`_ to
+ the Oracle Berkely DB.


.. exception:: error

Loading...