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 | c1f58394120eded222ed76ae930944e6403e6b3d (patch) | |
tree | 04fafdd6fc14f375f6f8df6a03c11cbe6eec7f71 /Doc/faq | |
parent | 28b0d9d13e8c4a92e60341d4758f3f81a8cf15e5 (diff) | |
download | cpython-c1f58394120eded222ed76ae930944e6403e6b3d.zip cpython-c1f58394120eded222ed76ae930944e6403e6b3d.tar.gz cpython-c1f58394120eded222ed76ae930944e6403e6b3d.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 6a720d1..4cf3b60 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1092,7 +1092,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? |