diff options
author | Warren Weckesser <warren.weckesser@gmail.com> | 2019-12-08 00:18:45 -0500 |
---|---|---|
committer | Warren Weckesser <warren.weckesser@gmail.com> | 2019-12-08 00:18:45 -0500 |
commit | 98c14a085cece71f54910cd11c39fe7a193d6022 (patch) | |
tree | 435485d6682907f2f142b7ec6c3c31ca4cdf5204 /numpy/polynomial/polyutils.py | |
parent | 6be17044b69258f0c35e777f10538e3dbcb3dc26 (diff) | |
download | numpy-98c14a085cece71f54910cd11c39fe7a193d6022.tar.gz |
MAINT: core: Fix a very long line in generated ufunc docstrings.
Put the $BROADCASTABLE_2 text on its own line, and add a line break
in the text. This changes a typical ufunc docstring from this (note
the very long line beginning 'The arrays to be subtracted...'):
```
Parameters
----------
x1, x2 : array_like
The arrays to be subtracted from each other. If ``x1.shape != x2.shape``, they must be broadcastable to a common shape (which becomes the shape of the output).
out : ndarray, None, or tuple of ndarray and None, optional
A location into which the result is stored. If provided, it must have
```
to this:
```
Parameters
----------
x1, x2 : array_like
The arrays to be subtracted from each other.
If ``x1.shape != x2.shape``, they must be broadcastable to a common
shape (which becomes the shape of the output).
out : ndarray, None, or tuple of ndarray and None, optional
A location into which the result is stored. If provided, it must have
```
Diffstat (limited to 'numpy/polynomial/polyutils.py')
0 files changed, 0 insertions, 0 deletions