diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2022-09-24 11:38:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-24 11:38:53 (GMT) |
commit | db39050396a104c73d0da473a2f00a62f9dfdfaa (patch) | |
tree | 2dfe5638f680aa797f47bd73f40bada3c49e489e /Doc/faq/library.rst | |
parent | f00383ec9bb9452fd9d5f5003f123e68fc4a71d8 (diff) | |
download | cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.zip cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.tar.gz cpython-db39050396a104c73d0da473a2f00a62f9dfdfaa.tar.bz2 |
gh-96959: Update HTTP links which are redirected to HTTPS (GH-96961)
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r-- | Doc/faq/library.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 8167bf2..ad83989 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -181,7 +181,7 @@ How do I create documentation from doc strings? The :mod:`pydoc` module can create HTML from the doc strings in your Python source code. An alternative for creating API documentation purely from docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx -<http://sphinx-doc.org>`_ can also include docstring content. +<https://www.sphinx-doc.org>`_ can also include docstring content. How do I get a single keypress at a time? |