diff options
Diffstat (limited to 'Doc/faq/programming.rst')
-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 9dd3a72..50471e8 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1201,7 +1201,7 @@ use a list comprehension:: w, h = 2, 3 A = [[None] * w for i in range(h)] -Or, you can use an extension that provides a matrix datatype; `Numeric Python +Or, you can use an extension that provides a matrix datatype; `NumPy <http://www.numpy.org/>`_ is the best known. |