8000 DOC: change all non-code instances of Numpy to NumPy by pdebuyl · Pull Request #8021 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: change all non-code instances of Numpy to NumPy #8021

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Sep 7, 2016
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
DOC: change version references from x.y to x.y.z
  • Loading branch information
pdebuyl committed Sep 7, 2016
commit 0a9fb7b7ea94b3d7554ca29c3a40057d22ec1f01
4 changes: 2 additions & 2 deletions doc/HOWTO_DOCUMENT.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,8 @@ The sections of the docstring are:

::

.. note:: Deprecated in NumPy 1.6
`ndobj_old` will be removed in NumPy 2.0, it is replaced by
.. note:: Deprecated in NumPy 1.6.0
`ndobj_old` will be removed in NumPy 2.0.0, it is replaced by
`ndobj_new` because the latter works also with array subclasses.

3. **Extended Summary**
Expand Down
2 changes: 1 addition & 1 deletion doc/HOWTO_RELEASE.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ to public keyservers, with a command such as::

Apply patch to fix bogus strides
--------------------------------
NPY_RELAXED_STRIDE_CHECKING was made the default in NumPy 1.10 and bogus
NPY_RELAXED_STRIDE_CHECKING was made the default in NumPy 1.10.0 and bogus
strides are used in the development branch to smoke out problems. The
`patch <https://github.com/numpy/numpy/pull/5996>`_ should be updated if
necessary and applied to the release branch to rationalize the strides.
Expand Down
2 changes: 1 addition & 1 deletion doc/source/reference/arrays.ndarray.rst
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ Matrix Multiplication:
.. note::

Matrix operators ``@`` and ``@=`` were introduced in Python 3.5
following PEP465. NumPy 1.10 has a preliminary implementation of ``@``
following PEP465. NumPy 1.10.0 has a preliminary implementation of ``@``
for testing purposes. Further documentation can be found in the
:func:`matmul` documentation.

Expand Down
2 changes: 1 addition & 1 deletion doc/source/reference/c-api.array.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2291,7 +2291,7 @@ an element copier function as a primitive.::
Array Iterators
---------------

As of NumPy 1.6, these array iterators are superceded by
As of NumPy 1.6.0, these array iterators are superceded by
the new array iterator, :c:type:`NpyIter`.

An array iterator is a simple way to access the elements of an
Expand Down
2 changes: 1 addition & 1 deletion numpy/core/fromnumeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def swapaxes(a, axis1, axis2):
Returns
-------
a_swapped : ndarray
For NumPy >= 1.10, if `a` is an ndarray, then a view of `a` is
For NumPy >= 1.10.0, if `a` is an ndarray, then a view of `a` is
returned; otherwise a new array is created. For earlier NumPy
versions a view of `a` is returned only if the order of the
axes is changed, otherwise the input array is returned.
Expand Down
2 changes: 1 addition & 1 deletion numpy/core/numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ def rollaxis(a, axis, start=0):
Returns
-------
res : ndarray
For NumPy >= 1.10 a view of `a` is always returned. For earlier
For NumPy >= 1.10.0 a view of `a` is always returned. For earlier
NumPy versions a view of `a` is returned only if the order of the
axes is changed, otherwise the input array is returned.

Expand Down
0