summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorAndre Delfino <adelfino@gmail.com>2020-09-27 00:47:25 (GMT)
committerGitHub <noreply@github.com>2020-09-27 00:47:25 (GMT)
commite8a2076e149703ea043db5a9dfaaf8d9b7f37c3e (patch)
tree2da32fc742c4e214b622fed2eb4a98180759766b /Doc/library/collections.rst
parent2afd1751dd9a35d4ec03b708e3e5cddd72c43f7e (diff)
downloadcpython-e8a2076e149703ea043db5a9dfaaf8d9b7f37c3e.zip
cpython-e8a2076e149703ea043db5a9dfaaf8d9b7f37c3e.tar.gz
cpython-e8a2076e149703ea043db5a9dfaaf8d9b7f37c3e.tar.bz2
Revert "Fix all Python Cookbook links (#22205)" (GH-22424)
This commit reverts commit ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b as the original links are working again and they provide extended features such as comments and alternative versions.
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index a7d01b3..f538da5 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -135,12 +135,12 @@ The class can be used to simulate nested scopes and is useful in templating.
:attr:`~collections.ChainMap.parents` property.
* The `Nested Contexts recipe
- <https://github.com/ActiveState/code/tree/master/recipes/Python/577434_Nested_contexts__chamapping/recipe-577434.py>`_ has options to control
+ <https://code.activestate.com/recipes/577434/>`_ has options to control
whether writes and other mutations apply only to the first mapping or to
any mapping in the chain.
* A `greatly simplified read-only version of Chainmap
- <https://github.com/ActiveState/code/tree/master/recipes/Python/305268_Chained_map_lookups/recipe-305268.py>`_.
+ <https://code.activestate.com/recipes/305268/>`_.
:class:`ChainMap` Examples and Recipes