10000 DOC: Add missing release note for #8584 by eric-wieser · Pull Request #8828 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: Add missing release note for #8584 #8828

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 1 commit into from
Mar 25, 2017
Merged
Changes from all commits
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
7 changes: 6 additions & 1 deletion doc/release/1.13.0-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,12 @@ Compatibility notes
Error type changes
~~~~~~~~~~~~~~~~~~

``numpy.hstack()`` now throws ValueError instead of IndexError when input is empty.
* ``numpy.hstack()`` now throws ``ValueError`` instead of ``IndexError`` when
input is empty.
* Functions taking an axis argument, when that argument is out of range, now
throw ``np.AxisError`` instead of a mixture of ``IndexError`` and
``ValueError``. For backwards compatibility, ``AxisError`` subclasses both of
these.

Tuple object dtypes
~~~~~~~~~~~~~~~~~~~
Expand Down
0