diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-06-08 22:04:21 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-06-08 22:04:21 (GMT) |
commit | c49805e96782e4e0ec4fe6c8cf0172d435b328ec (patch) | |
tree | 2fda276c32b32aa190b41433d5e131cf790fd94f /Doc/faq | |
parent | 8d6834a28e244f70ad9576f8895113387858ef91 (diff) | |
download | cpython-c49805e96782e4e0ec4fe6c8cf0172d435b328ec.zip cpython-c49805e96782e4e0ec4fe6c8cf0172d435b328ec.tar.gz cpython-c49805e96782e4e0ec4fe6c8cf0172d435b328ec.tar.bz2 |
#18126: update NumPy links in the documentation. Patch by Yury V. Zaytsev.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index b9ed534..16fabe1 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1204,7 +1204,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://numpy.scipy.org/>`_ is the best known. +<http://www.numpy.org/>`_ is the best known. How do I apply a method to a sequence of objects? |