]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
"Numeric Python" -> "NumPy"
authorBenjamin Peterson <benjamin@python.org>
Fri, 27 May 2016 05:51:32 +0000 (22:51 -0700)
committerBenjamin Peterson <benjamin@python.org>
Fri, 27 May 2016 05:51:32 +0000 (22:51 -0700)
Doc/faq/programming.rst

index 461a65b3dd9cc3d8f9c249f6d6423940f5070a4a..cfda37e1b93edf7ccf70401915e480225a9c4c57 100644 (file)
@@ -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
 <http://www.numpy.org/>`_ is the best known.