diff options
author | Andre Delfino <adelfino@gmail.com> | 2020-10-01 23:22:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-01 23:22:14 (GMT) |
commit | c8bb24166e367d449158015cb9b1093f03c7175d (patch) | |
tree | 4dfe17e665e4db0fcb163322a92e0f23d475d826 /Doc/faq/programming.rst | |
parent | bd0a08ea90e4c7a2ebf29697937e9786d4d8e5ee (diff) | |
download | cpython-c8bb24166e367d449158015cb9b1093f03c7175d.zip cpython-c8bb24166e367d449158015cb9b1093f03c7175d.tar.gz cpython-c8bb24166e367d449158015cb9b1093f03c7175d.tar.bz2 |
[doc] Update references to NumPy (GH-22458)
Numeric(al) Python to NumPy. It seems the old name hasn't been used for some time.
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 76ae4d2..0b486d7 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1191,7 +1191,7 @@ difference is that a Python list can contain objects of many different types. The ``array`` module also provides methods for creating arrays of fixed types with compact representations, but they are slower to index than lists. Also -note that the Numeric extensions and others define array-like structures with +note that NumPy and other third party packages define array-like structures with various characteristics as well. To get Lisp-style linked lists, you can emulate cons cells using tuples:: |