From 4ce6bb355e41894492f8ecd67f323ea7ff235931 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 9 Mar 2021 21:00:07 +0100 Subject: [PATCH 1/2] Update link to Django's Context class. --- Doc/library/collections.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index aa0acfaae45a5f..540db2002343e8 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -123,7 +123,7 @@ The class can be used to simulate nested scopes and is useful in templating. writing to any mapping in the chain. * Django's `Context class - `_ + `_ for templating is a read-only chain of mappings. It also features pushing and popping of contexts similar to the :meth:`~collections.ChainMap.new_child` method and the From 06581adf4b13e4004d91ed4f57154582566f9b50 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Tue, 9 Mar 2021 21:07:27 +0100 Subject: [PATCH 2/2] Update link to get-pip.py. --- Doc/library/venv.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst index 5d4a36481f1dcc..2a4eede91a7c17 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -404,7 +404,7 @@ subclass which installs setuptools and pip into a created virtual environment:: :param context: The information for the virtual environment creation request being processed. """ - url = 'https://raw.github.com/pypa/pip/master/contrib/get-pip.py' + url = 'https://bootstrap.pypa.io/get-pip.py' self.install_script(context, 'pip', url) def main(args=None):