diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-05-27 05:51:44 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-05-27 05:51:44 (GMT) |
commit | 3f69f02792ee876ed0bd9cf9311bfb510889e164 (patch) | |
tree | 3eae7f79fed81faad20991211d3ca83d7145c208 /Doc/faq/programming.rst | |
parent | 48df37dbb812ac46afe635ca11f6a627b089b768 (diff) | |
parent | 6d3ad2f64d496a35833ebbe80a471183181bed4f (diff) | |
download | cpython-3f69f02792ee876ed0bd9cf9311bfb510889e164.zip cpython-3f69f02792ee876ed0bd9cf9311bfb510889e164.tar.gz cpython-3f69f02792ee876ed0bd9cf9311bfb510889e164.tar.bz2 |
merge 3.5
Diffstat (limited to 'Doc/faq/programming.rst')
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 9dd3a72..50471e8 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1201,7 +1201,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. |