Add MutableSet example.

This commit is contained in:
Raymond Hettinger 2009-03-20 18:30:29 +00:00
parent 7e6cf31c29
commit 399ff09961
1 changed files with 5 additions and 1 deletions

View File

@ -147,8 +147,12 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
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: