summaryrefslogtreecommitdiffstats
path: root/Doc/faq/library.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2014-10-29 09:57:37 (GMT)
committerGeorg Brandl <georg@python.org>2014-10-29 09:57:37 (GMT)
commitb7354a65ce71ac39d7dec97cce4ca7afdffcb8a3 (patch)
treedb84fdf0d6f2174731bf55700464e9ff3ec7307e /Doc/faq/library.rst
parent0ef496678a4908d321596043156fefeaf6e8afae (diff)
downloadcpython-b7354a65ce71ac39d7dec97cce4ca7afdffcb8a3.zip
cpython-b7354a65ce71ac39d7dec97cce4ca7afdffcb8a3.tar.gz
cpython-b7354a65ce71ac39d7dec97cce4ca7afdffcb8a3.tar.bz2
Fixing broken links in doc, part 4: some more breaks and redirects
Diffstat (limited to 'Doc/faq/library.rst')
-rw-r--r--Doc/faq/library.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/library.rst b/Doc/faq/library.rst
index 3c47687..d71a9b4 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.sf.net/>`_. `Sphinx
+docstrings is `epydoc <http://epydoc.sourceforge.net/>`_. `Sphinx
<http://sphinx-doc.org>`_ can also include docstring content.
@@ -773,7 +773,7 @@ socket to select to check if it's writable.
.. note::
The :mod:`asyncore` module presents a framework-like approach to the problem
of writing non-blocking networking code.
- The third-party `Twisted <http://twistedmatrix.com/>`_ library is
+ The third-party `Twisted <https://twistedmatrix.com/trac/>`_ library is
a popular and feature-rich alternative.