diff options
author | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-05 22:24:34 +0200 |
---|---|---|
committer | Pierre de Buyl <pdebuyl@pdebuyl.be> | 2016-09-06 11:20:19 +0200 |
commit | 773e3cad9a71cb9a7849d8e251fb8a99ab35d06b (patch) | |
tree | 793dab9410558a21622d6e6b948d0491997cc54c /doc/source/reference/arrays.classes.rst | |
parent | adc155e12648256eea754d1d53e8322e3ac19549 (diff) | |
download | numpy-773e3cad9a71cb9a7849d8e251fb8a99ab35d06b.tar.gz |
change all non-code instances of Numpy to NumPy
Instances remain for NumpyVersion and Numpy.rec.fromarrays that are
references to code.
Release notes were left unchanged.
see issue #7986
Diffstat (limited to 'doc/source/reference/arrays.classes.rst')
-rw-r--r-- | doc/source/reference/arrays.classes.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/arrays.classes.rst b/doc/source/reference/arrays.classes.rst index b82f7d33c..298e81717 100644 --- a/doc/source/reference/arrays.classes.rst +++ b/doc/source/reference/arrays.classes.rst @@ -37,14 +37,14 @@ Special attributes and methods .. seealso:: :ref:`Subclassing ndarray <basics.subclassing>` -Numpy provides several hooks that classes can customize: +NumPy provides several hooks that classes can customize: .. method:: class.__numpy_ufunc__(ufunc, method, i, inputs, **kwargs) .. versionadded:: 1.11 Any class (ndarray subclass or not) can define this method to - override behavior of Numpy's ufuncs. This works quite similarly to + override behavior of NumPy's ufuncs. This works quite similarly to Python's ``__mul__`` and other binary operation routines. - *ufunc* is the ufunc object that was called. @@ -336,7 +336,7 @@ Record arrays (:mod:`numpy.rec`) .. seealso:: :ref:`routines.array-creation.rec`, :ref:`routines.dtype`, :ref:`arrays.dtypes`. -Numpy provides the :class:`recarray` class which allows accessing the +NumPy provides the :class:`recarray` class which allows accessing the fields of a structured array as attributes, and a corresponding scalar data type object :class:`record`. |