[Python-checkins] r70487 - python/branches/release30-maint/Doc/library/collections.rst

raymond.hettinger python-checkins at python.org
Fri Mar 20 19:31:58 CET 2009


Author: raymond.hettinger
Date: Fri Mar 20 19:31:58 2009
New Revision: 70487

Log:
Add MutableSet example.

Modified:
   python/branches/release30-maint/Doc/library/collections.rst

Modified: python/branches/release30-maint/Doc/library/collections.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/collections.rst	(original)
+++ python/branches/release30-maint/Doc/library/collections.rst	Fri Mar 20 19:31:58 2009
@@ -135,7 +135,12 @@
    inherit from both :meth:`Set` and :meth:`Hashable`, then define
    ``__hash__ = Set._hash``.
 
-(For more about ABCs, see the :mod:`abc` module and :pep:`3119`.)
+.. seealso::
+
+   * `OrderedSet recipe <http://code.activestate.com/recipes/576694/>`_ for an
+     example built on :class:`MutableSet`.
+
+   * For more about ABCs, see the :mod:`abc` module and :pep:`3119`.
 
 
 .. _deque-objects:


More information about the Python-checkins mailing list