diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-10-06 13:04:48 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 13:04:48 (GMT) |
commit | d747f5e805fa1c33768d9c22605e6324a35b3709 (patch) | |
tree | d83c12ec6e4f5292d0d8a345e3882e6c5051dfec /Doc/faq | |
parent | 1374459c9088725e022beab418bced96a825baad (diff) | |
download | cpython-d747f5e805fa1c33768d9c22605e6324a35b3709.zip cpython-d747f5e805fa1c33768d9c22605e6324a35b3709.tar.gz cpython-d747f5e805fa1c33768d9c22605e6324a35b3709.tar.bz2 |
[doc] Update references to NumPy (GH-22458) (GH-28749)
Numeric(al) Python to NumPy. It seems the old name hasn't been used for some time.
(cherry picked from commit c8bb24166e367d449158015cb9b1093f03c7175d)
Co-authored-by: Andre Delfino <adelfino@gmail.com>
Diffstat (limited to 'Doc/faq')
-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 04d6592..4e04b10 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -1184,7 +1184,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:: |