diff options
author | Stéphane Wirtel <stephane@wirtel.be> | 2018-05-16 14:08:23 (GMT) |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2018-05-16 14:08:23 (GMT) |
commit | e4cd12d3d338e691ab0c12a2f2f90422eee04bda (patch) | |
tree | 19252a5ef3e74beae50084ceb34160f034479440 /Doc/tutorial | |
parent | 5e8c52680450b67a116d3d555db8416c40576fdb (diff) | |
download | cpython-e4cd12d3d338e691ab0c12a2f2f90422eee04bda.zip cpython-e4cd12d3d338e691ab0c12a2f2f90422eee04bda.tar.gz cpython-e4cd12d3d338e691ab0c12a2f2f90422eee04bda.tar.bz2 |
[3.6] bpo-33503: Fix the broken pypi link in the source and the documentation (GH-6814) (GH-6885)
(cherry picked from commit 19177fbd5d6d9b29ccc302d65f9d9417ece082ce)
Co-authored-by: Stéphane Wirtel <stephane@wirtel.be>
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. |