[Python-checkins] r88436 - python/branches/release27-maint/Doc/library/sets.rst

eric.araujo python-checkins at python.org
Fri Feb 18 18:47:23 CET 2011


Author: eric.araujo
Date: Fri Feb 18 18:47:23 2011
New Revision: 88436

Log:
Link from deprecated sets module to builtins set and frozenset (#11238)


Modified:
   python/branches/release27-maint/Doc/library/sets.rst

Modified: python/branches/release27-maint/Doc/library/sets.rst
==============================================================================
--- python/branches/release27-maint/Doc/library/sets.rst	(original)
+++ python/branches/release27-maint/Doc/library/sets.rst	Fri Feb 18 18:47:23 2011
@@ -14,7 +14,7 @@
 .. versionadded:: 2.3
 
 .. deprecated:: 2.6
-   The built-in ``set``/``frozenset`` types replace this module.
+   The built-in :class:`set`/:class:`frozenset` types replace this module.
 
 The :mod:`sets` module provides classes for constructing and manipulating
 unordered collections of unique elements.  Common uses include membership


More information about the Python-checkins mailing list