From: Benjamin Peterson Date: Fri, 27 May 2016 05:51:32 +0000 (-0700) Subject: "Numeric Python" -> "NumPy" X-Git-Tag: v3.5.2rc1~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d3ad2f64d496a35833ebbe80a471183181bed4f;p=thirdparty%2FPython%2Fcpython.git "Numeric Python" -> "NumPy" --- diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 461a65b3dd9c..cfda37e1b93e 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1200,7 +1200,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.