diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-10 03:26:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-10 03:26:08 (GMT) |
commit | 10480940373492652bc285fca3fa74751c271645 (patch) | |
tree | bb1bfed3416120cc371eb884960cf73aad9a957e /Doc/library/collections.rst | |
parent | a4815caa7ccf21aa994d0e0eec66873072f0e352 (diff) | |
download | cpython-10480940373492652bc285fca3fa74751c271645.zip cpython-10480940373492652bc285fca3fa74751c271645.tar.gz cpython-10480940373492652bc285fca3fa74751c271645.tar.bz2 |
Move source links to consistent location and remove wordy, big yellow boxes.
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r-- | Doc/library/collections.rst | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index 3e03dee..d5ade41 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -12,6 +12,8 @@ import itertools __name__ = '<doctest>' +**Source code:** :source:`Lib/collections.py` + This module implements specialized container datatypes providing alternatives to Python's general purpose built-in containers, :class:`dict`, :class:`list`, :class:`set`, and :class:`tuple`. @@ -31,11 +33,6 @@ 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 ------------------------ |