diff --git a/Doc/library/collections.rst b/Doc/library/collections.rst index d4297166597b64..7cbc1721df151f 100644 --- a/Doc/library/collections.rst +++ b/Doc/library/collections.rst @@ -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 - `_ + `_ 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 59b251837a4896..593ba96cf38be1 100644 --- a/Doc/library/venv.rst +++ b/Doc/library/venv.rst @@ -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):