summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-05-27 05:51:32 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-05-27 05:51:32 (GMT)
commit01d2580d4bc1cd8b988d050469073b338884d6bd (patch)
tree89c52219eb0eafd2e551ccc4454f4fd60948b8c0 /Doc
parent90c9b40c71c26c9b821a61c43f6c1122198b888e (diff)
downloadcpython-01d2580d4bc1cd8b988d050469073b338884d6bd.zip
cpython-01d2580d4bc1cd8b988d050469073b338884d6bd.tar.gz
cpython-01d2580d4bc1cd8b988d050469073b338884d6bd.tar.bz2
"Numeric Python" -> "NumPy"
Diffstat (limited to 'Doc')
-rw-r--r--Doc/faq/programming.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst
index d83833d..c8190e4 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
<http://www.numpy.org/>`_ is the best known.