diff options
author | Oleg Iarygin <oleg@arhadthedev.net> | 2022-06-21 18:55:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-21 18:55:18 (GMT) |
commit | f62ff97f31a775cc7956adeae32c14e7c85bdc15 (patch) | |
tree | 3c42c4a312807cc6cab6c0c124b235bb44e743cd /Doc/faq | |
parent | 7327d61abec965f309d10847d0e37faef680c18c (diff) | |
download | cpython-f62ff97f31a775cc7956adeae32c14e7c85bdc15.zip cpython-f62ff97f31a775cc7956adeae32c14e7c85bdc15.tar.gz cpython-f62ff97f31a775cc7956adeae32c14e7c85bdc15.tar.bz2 |
gh-93851: Fix all broken links in Doc/ (GH-93853)
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/library.rst | 2 | ||||
-rw-r--r-- | Doc/faq/programming.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst index 85b04c9..8167bf2 100644 --- a/Doc/faq/library.rst +++ b/Doc/faq/library.rst @@ -670,7 +670,7 @@ A summary of available frameworks is maintained by Paul Boddie at https://wiki.python.org/moin/WebProgramming\ . Cameron Laird maintains a useful set of pages about Python web technologies at -http://phaseit.net/claird/comp.lang.python/web_python. +https://web.archive.org/web/20210224183619/http://phaseit.net/claird/comp.lang.python/web_python. How can I mimic CGI form submission (METHOD=POST)? diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index f87eaff..0b11bc9 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -56,7 +56,7 @@ Are there tools to help find bugs or perform static analysis? Yes. -`Pylint <https://www.pylint.org/>`_ and +`Pylint <https://pylint.pycqa.org/en/latest/index.html>`_ and `Pyflakes <https://github.com/PyCQA/pyflakes>`_ do basic checking that will help you catch bugs sooner. |