summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-07 07:49:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-07 07:49:58 (GMT)
commit1acbf853c8be743c88141501ae879d63eb8ce209 (patch)
tree436fd38b15cda0f644ccae8d238096087c17f63d /Doc/library/collections.rst
parenta5f3a507345c8a01d99960a036dfa9d1baf8da10 (diff)
parent6dff0205b724669cc0469dd65a3f7edc5a69e1e7 (diff)
downloadcpython-1acbf853c8be743c88141501ae879d63eb8ce209.zip
cpython-1acbf853c8be743c88141501ae879d63eb8ce209.tar.gz
cpython-1acbf853c8be743c88141501ae879d63eb8ce209.tar.bz2
Issue #26736: Used HTTPS for external links in the documentation if possible.
Diffstat (limited to 'Doc/library/collections.rst')
-rw-r--r--Doc/library/collections.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index 37d9e00..a410ed4 100644
--- a/Doc/library/collections.rst
+++ b/Doc/library/collections.rst
@@ -116,12 +116,12 @@ The class can be used to simulate nested scopes and is useful in templating.
:meth:`~collections.ChainMap.parents` property.
* The `Nested Contexts recipe
- <http://code.activestate.com/recipes/577434/>`_ 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
- <http://code.activestate.com/recipes/305268/>`_.
+ <https://code.activestate.com/recipes/305268/>`_.
:class:`ChainMap` Examples and Recipes
@@ -957,7 +957,7 @@ customize a prototype instance:
.. seealso::
* `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/>`_
+ <https://code.activestate.com/recipes/577629-namedtupleabc-abstract-base-class-mix-in-for-named/>`_
by Jan Kaliszewski. Besides providing an :term:`abstract base class` for
named tuples, it also supports an alternate :term:`metaclass`-based
constructor that is convenient for use cases where named tuples are being