diff options
author | Georg Brandl <georg@python.org> | 2014-10-29 07:36:35 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2014-10-29 07:36:35 (GMT) |
commit | 06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a (patch) | |
tree | 50701e842c19060c958da0118c59f993c0f84541 /Doc/distutils | |
parent | 42bf48630293d31a54436b5aa36727f5f06837c1 (diff) | |
download | cpython-06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a.zip cpython-06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a.tar.gz cpython-06f3b3b98c3c9067c4c91d584e6fd4f08ac7f80a.tar.bz2 |
Use https:// URLs when referring to python.org hosts.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 2 | ||||
-rw-r--r-- | Doc/distutils/examples.rst | 2 | ||||
-rw-r--r-- | Doc/distutils/setupscript.rst | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index d1201ef..2a75a46 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 | <http://pypi.python.org/pypi?:action=list_classifiers>`_. | + | | package | <https://pypi.python.org/pypi?:action=list_classifiers>`_. | +--------------------+--------------------------------+-------------------------------------------------------------+ | *distclass* | the :class:`Distribution` | a subclass of | | | class to use | :class:`distutils.core.Distribution` | diff --git a/Doc/distutils/examples.rst b/Doc/distutils/examples.rst index 6c59b77..be108a3 100644 --- a/Doc/distutils/examples.rst +++ b/Doc/distutils/examples.rst @@ -11,7 +11,7 @@ Distutils Cookbook. .. seealso:: - `Distutils Cookbook <http://wiki.python.org/moin/Distutils/Cookbook>`_ + `Distutils Cookbook <https://wiki.python.org/moin/Distutils/Cookbook>`_ Collection of recipes showing how to achieve more control over distutils. diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst index 8e9815a..67327bd 100644 --- a/Doc/distutils/setupscript.rst +++ b/Doc/distutils/setupscript.rst @@ -28,7 +28,7 @@ the package into Python 1.5.2.) :: description='Python Distribution Utilities', author='Greg Ward', author_email='gward@python.net', - url='http://www.python.org/sigs/distutils-sig/', + url='https://www.python.org/sigs/distutils-sig/', packages=['distutils', 'distutils.command'], ) @@ -606,7 +606,7 @@ Notes: (4) These fields should not be used if your package is to be compatible with Python versions prior to 2.2.3 or 2.3. The list is available from the `PyPI website - <http://pypi.python.org/pypi>`_. + <https://pypi.python.org/pypi>`_. (5) The ``long_description`` field is used by PyPI when you are |