[Python-checkins] Update link to Django's Context class. (#24805)

orsenthil webhook-mailer at python.org
Sat Mar 13 07:26:14 EST 2021


https://github.com/python/cpython/commit/d0a445490e2c0e1d2aef3005f14211d9a85196bf
commit: d0a445490e2c0e1d2aef3005f14211d9a85196bf
branch: master
author: Mariusz Felisiak <felisiak.mariusz at gmail.com>
committer: orsenthil <skumaran at gatech.edu>
date: 2021-03-13T04:26:11-08:00
summary:

Update link to Django's Context class. (#24805)

* Update link to Django's Context class.
* Update link to get-pip.py.

files:
M Doc/library/collections.rst
M Doc/library/venv.rst

diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst
index aa0acfaae45a5..540db2002343e 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
-      <https://github.com/django/django/blob/master/django/template/context.py>`_
+      <https://github.com/django/django/blob/main/django/template/context.py>`_
       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
diff --git a/Doc/library/venv.rst b/Doc/library/venv.rst
index 5d4a36481f1dc..2a4eede91a7c1 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):



More information about the Python-checkins mailing list