#3791: remove last traces of bsddb.
diff --git a/Doc/library/shelve.rst b/Doc/library/shelve.rst
index 6dfef68..62005a4 100644
--- a/Doc/library/shelve.rst
+++ b/Doc/library/shelve.rst
@@ -102,12 +102,14 @@
 .. class:: BsdDbShelf(dict[, protocol=None[, writeback=False]])
 
    A subclass of :class:`Shelf` which exposes :meth:`first`, :meth:`next`,
-   :meth:`previous`, :meth:`last` and :meth:`set_location` which are available in
-   the :mod:`bsddb` module but not in other database modules.  The *dict* object
-   passed to the constructor must support those methods.  This is generally
-   accomplished by calling one of :func:`bsddb.hashopen`, :func:`bsddb.btopen` or
-   :func:`bsddb.rnopen`.  The optional *protocol* and *writeback* parameters have
-   the same interpretation as for the :class:`Shelf` class.
+   :meth:`previous`, :meth:`last` and :meth:`set_location` which are available
+   in the third-party :mod:`bsddb` module from `pybsddb
+   <http://www.jcea.es/programacion/pybsddb.htm>`_ but not in other database
+   modules.  The *dict* object passed to the constructor must support those
+   methods.  This is generally accomplished by calling one of
+   :func:`bsddb.hashopen`, :func:`bsddb.btopen` or :func:`bsddb.rnopen`.  The
+   optional *protocol* and *writeback* parameters have the same interpretation
+   as for the :class:`Shelf` class.
 
 
 .. class:: DbfilenameShelf(filename[, flag='c'[, protocol=None[, writeback=False]]])
diff --git a/Doc/library/weakref.rst b/Doc/library/weakref.rst
index 3681d81..0f3ebe6 100644
--- a/Doc/library/weakref.rst
+++ b/Doc/library/weakref.rst
@@ -59,9 +59,8 @@
 
 Not all objects can be weakly referenced; those objects which can include class
 instances, functions written in Python (but not in C), instance methods, sets,
-frozensets, file objects, :term:`generator`\s, type objects, :class:`DBcursor`
-objects from the :mod:`bsddb` module, sockets, arrays, deques, and regular
-expression pattern objects.
+frozensets, file objects, :term:`generator`\s, type objects, sockets, arrays,
+deques, and regular expression pattern objects.
 
 Several builtin types such as :class:`list` and :class:`dict` do not directly
 support weak references but can add support through subclassing::