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/distutils | |
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/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 2 | ||||
-rw-r--r-- | Doc/distutils/packageindex.rst | 2 | ||||
-rw-r--r-- | Doc/distutils/setupscript.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 9fce46a..3c894682 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -78,7 +78,7 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and | | be built | :class:`distutils.core.Extension` | +--------------------+--------------------------------+-------------------------------------------------------------+ | *classifiers* | A list of categories for the | a list of strings; valid classifiers are listed on `PyPI | - | | package | <https://pypi.python.org/pypi?:action=list_classifiers>`_. | + | | package | <https://pypi.org/classifiers>`_. | +--------------------+--------------------------------+-------------------------------------------------------------+ | *distclass* | the :class:`Distribution` | a subclass of | | | class to use | :class:`distutils.core.Distribution` | diff --git a/Doc/distutils/packageindex.rst b/Doc/distutils/packageindex.rst index 086e14e..50cb74f 100644 --- a/Doc/distutils/packageindex.rst +++ b/Doc/distutils/packageindex.rst @@ -250,4 +250,4 @@ without warnings does not guarantee that PyPI will convert the content successfully. -.. _Python Package Index (PyPI): https://pypi.python.org/pypi +.. _Python Package Index (PyPI): https://pypi.org diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst index 952607a..1d96acb 100644 --- a/Doc/distutils/setupscript.rst +++ b/Doc/distutils/setupscript.rst @@ -625,7 +625,7 @@ Notes: (7) The valid classifiers are listed on - `PyPI <https://pypi.python.org/pypi?:action=list_classifiers>`_. + `PyPI <https://pypi.org/classifiers>`_. (8) To preserve backward compatibility, this field also accepts a string. If |