mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
Issue #19271: By Python3.4, the Python 2.4 backport links are no longer of much interest.
This commit is contained in:
parent
2063aafc6e
commit
c93dbe2f9b
1 changed files with 0 additions and 13 deletions
|
@ -374,10 +374,6 @@ or subtracting from an empty counter.
|
||||||
|
|
||||||
.. seealso::
|
.. seealso::
|
||||||
|
|
||||||
* `Counter class <http://code.activestate.com/recipes/576611/>`_
|
|
||||||
adapted for Python 2.5 and an early `Bag recipe
|
|
||||||
<http://code.activestate.com/recipes/259174/>`_ for Python 2.4.
|
|
||||||
|
|
||||||
* `Bag class <http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html>`_
|
* `Bag class <http://www.gnu.org/software/smalltalk/manual-base/html_node/Bag.html>`_
|
||||||
in Smalltalk.
|
in Smalltalk.
|
||||||
|
|
||||||
|
@ -920,11 +916,6 @@ and more efficient to use a simple class declaration:
|
||||||
>>> class Status:
|
>>> class Status:
|
||||||
open, pending, closed = range(3)
|
open, pending, closed = range(3)
|
||||||
|
|
||||||
.. seealso::
|
|
||||||
|
|
||||||
* `Named tuple recipe <http://code.activestate.com/recipes/500261/>`_
|
|
||||||
adapted for Python 2.4.
|
|
||||||
|
|
||||||
* `Recipe for named tuple abstract base class with a metaclass mix-in
|
* `Recipe for named tuple abstract base class with a metaclass mix-in
|
||||||
<http://code.activestate.com/recipes/577629-namedtupleabc-abstract-base-class-mix-in-for-named/>`_
|
<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
|
by Jan Kaliszewski. Besides providing an :term:`abstract base class` for
|
||||||
|
@ -987,10 +978,6 @@ The :class:`OrderedDict` constructor and :meth:`update` method both accept
|
||||||
keyword arguments, but their order is lost because Python's function call
|
keyword arguments, but their order is lost because Python's function call
|
||||||
semantics pass-in keyword arguments using a regular unordered dictionary.
|
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
|
:class:`OrderedDict` Examples and Recipes
|
||||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue