From: Benjamin Peterson Date: Fri, 27 May 2016 05:51:32 +0000 (-0700) Subject: "Numeric Python" -> "NumPy" X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=01d2580d4bc1cd8b988d050469073b338884d6bd;p=python "Numeric Python" -> "NumPy" --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index d83833dfc6..c8190e4cc1 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1317,7 +1317,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 `_ is the best known.