diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-05-15 18:58:35 (GMT) |
---|---|---|
committer | Ned Deily <nad@python.org> | 2018-05-15 18:58:35 (GMT) |
commit | 19177fbd5d6d9b29ccc302d65f9d9417ece082ce (patch) | |
tree | 202e95daf156bad46c0ee152701fd2d904ffbe11 /Doc/tutorial | |
parent | b056562860c227bad2e0ba7cd3130e115c007768 (diff) | |
download | cpython-19177fbd5d6d9b29ccc302d65f9d9417ece082ce.zip cpython-19177fbd5d6d9b29ccc302d65f9d9417ece082ce.tar.gz cpython-19177fbd5d6d9b29ccc302d65f9d9417ece082ce.tar.bz2 |
bpo-33503: Fix the broken pypi link in the source and the documentation (GH-6814)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/venv.rst | 2 | ||||
-rw-r--r-- | Doc/tutorial/whatnow.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/venv.rst b/Doc/tutorial/venv.rst index e2dd57d..dc4136e 100644 --- a/Doc/tutorial/venv.rst +++ b/Doc/tutorial/venv.rst @@ -88,7 +88,7 @@ Managing Packages with pip You can install, upgrade, and remove packages using a program called :program:`pip`. By default ``pip`` will install packages from the Python -Package Index, <https://pypi.python.org/pypi>. You can browse the Python +Package Index, <https://pypi.org>. You can browse the Python Package Index by going to it in your web browser, or you can use ``pip``'s limited search feature: diff --git a/Doc/tutorial/whatnow.rst b/Doc/tutorial/whatnow.rst index 1ea22ae..d876d07 100644 --- a/Doc/tutorial/whatnow.rst +++ b/Doc/tutorial/whatnow.rst @@ -38,7 +38,7 @@ More Python resources: * https://docs.python.org: Fast access to Python's documentation. -* https://pypi.python.org/pypi: The Python Package Index, previously also nicknamed +* https://pypi.org: The Python Package Index, previously also nicknamed the Cheese Shop, is an index of user-created Python modules that are available for download. Once you begin releasing code, you can register it here so that others can find it. |