10000 [3.8] Update link to Django's Context class. (GH-24805) by miss-islington · Pull Request #24842 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.8] Update link to Django's Context class. (GH-24805) #24842

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 13, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update link to Django's Context class. (GH-24805)
* Update link to Django's Context class.
* Update link to get-pip.py.
(cherry picked from commit d0a4454)

Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
  • Loading branch information
felixxm authored and miss-islington committed Mar 13, 2021
commit 211d3cdaa57623582165cb9ba02868b71d9f9e83
2 changes: 1 addition & 1 deletion Doc/library/collections.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,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
Expand Down
2 changes: 1 addition & 1 deletion Doc/library/venv.rst
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,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):
Expand Down
0