summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2011-01-07 21:17:56 (GMT)
committerRaymond Hettinger <python@rcn.com>2011-01-07 21:17:56 (GMT)
commit1122fa2eb4b0942e26ea12cfc0bd1e497411738b (patch)
treea7d7b8b64a46b5e77cf27f6133ee2abbd8680573 /Doc/library/collections.rst
parent32e8fea396db17f123738c050811c993b88c9e43 (diff)
downloadcpython-1122fa2eb4b0942e26ea12cfc0bd1e497411738b.zip
cpython-1122fa2eb4b0942e26ea12cfc0bd1e497411738b.tar.gz
cpython-1122fa2eb4b0942e26ea12cfc0bd1e497411738b.tar.bz2
Revert r87823 which moved the source link to the wrong section.
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst8
1 files changed, 5 insertions, 3 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index b3d6f55..3e03dee 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -31,6 +31,11 @@ In addition to the concrete container classes, the collections module provides
:ref:`abstract-base-classes` that can be used to test whether a class provides a
particular interface, for example, whether it is hashable or a mapping.
+.. seealso::
+
+ Latest version of the :source:`collections module Python source code
+ <Lib/collections.py>`
+
:class:`Counter` objects
------------------------
@@ -1064,9 +1069,6 @@ Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
.. seealso::
- * Latest version of the :source:`collections module Python source code
- <Lib/collections.py>`
-
* Latest version of the :source:`Python source code for the collections
abstract base classes <Lib/_abcoll.py>`