summaryrefslogtreecommitdiffstats
path: root/Doc/faq/programming.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-10-11 20:16:16 (GMT)
committerGeorg Brandl <georg@python.org>2009-10-11 20:16:16 (GMT)
commita4314c2b218fb0509a24c873a22137ff229a01fd (patch)
treecaec1be7189cec098d74e7677b46da5d48831c8e /Doc/faq/programming.rst
parent6728c5a762752260324b2015a2d47528f4c7194a (diff)
downloadcpython-a4314c2b218fb0509a24c873a22137ff229a01fd.zip
cpython-a4314c2b218fb0509a24c873a22137ff229a01fd.tar.gz
cpython-a4314c2b218fb0509a24c873a22137ff229a01fd.tar.bz2
Fix broken links found by "make linkcheck". scipy.org seems to be done right now, so I could not verify links going there.
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r--Doc/faq/programming.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index f1dfccd..af12c4f 100644
--- a/Doc/faq/programming.rst
+++ b/Doc/faq/programming.rst
@@ -67,8 +67,8 @@ plug-ins to add a custom feature. In addition to the bug checking that
PyChecker performs, Pylint offers some additional features such as checking line
length, whether variable names are well-formed according to your coding
standard, whether declared interfaces are fully implemented, and more.
-http://www.logilab.org/projects/pylint/documentation provides a full list of
-Pylint's features.
+http://www.logilab.org/card/pylint_manual provides a full list of Pylint's
+features.
How can I create a stand-alone binary from a Python script?
@@ -1141,7 +1141,7 @@ use a list comprehension::
A = [[None] * w for i in range(h)]
Or, you can use an extension that provides a matrix datatype; `Numeric Python
-<http://www.pfdubois.com/numpy/>`_ is the best known.
+<http://numpy.scipy.org/>`_ is the best known.
How do I apply a method to a sequence of objects?