]> granicus.if.org Git - python/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 d83833dfc679f96534be7c17e276fe79f913aa99..c8190e4cc18cb1929d41fdc4cfff39619c7ffe81 100644 (file)
@@ -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
 <http://www.numpy.org/>`_ is the best known.