cpython: 9e322a8f80d9 (original) (raw)
Mercurial > cpython
changeset 86538:9e322a8f80d9
Issue #19271: By Python3.4, the Python 2.4 backport links are no longer of much interest. [#19271]
Raymond Hettinger python@rcn.com | |
---|---|
date | Sun, 20 Oct 2013 20:42:07 -0700 |
parents | 5dc65f8d29a2 |
children | 2f09a6980e1a |
files | Doc/library/collections.rst |
diffstat | 1 files changed, 0 insertions(+), 13 deletions(-)[+] [-] Doc/library/collections.rst 13 |
line wrap: on
line diff
--- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -374,10 +374,6 @@ or subtracting from an empty counter. .. seealso::
adapted for Python 2.5 and an early `Bag recipe[](#l1.8)
<http://code.activestate.com/recipes/259174/>`_ for Python 2.4.[](#l1.9)
-
* Bag class <http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html>
_
in Smalltalk.
@@ -920,11 +916,6 @@ and more efficient to use a simple class
>>> class Status:
open, pending, closed = range(3)
-.. seealso::
-
-
* Recipe for named tuple abstract base class with a metaclass mix-in[](#l1.23) <http://code.activestate.com/recipes/577629-namedtupleabc-abstract-base-class-mix-in-for-named/>
_
by Jan Kaliszewski. Besides providing an :term:abstract base class
for
@@ -987,10 +978,6 @@ The :class:OrderedDict
constructor and
keyword arguments, but their order is lost because Python's function call
semantics pass-in keyword arguments using a regular unordered dictionary.
-.. seealso::
-
Equivalent OrderedDict recipe <http://code.activestate.com/recipes/576693/>
_- that runs on Python 2.4 or later.
:class:OrderedDict
Examples and Recipes
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^