summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authormattip <matti.picus@gmail.com>2018-08-17 09:39:44 +0300
committermattip <matti.picus@gmail.com>2018-08-17 09:39:44 +0300
commit210c361ce38aa7a67d3227f93a6df1b0b4790d33 (patch)
tree87d3ea547b7b221c0d3ae4727d3003dc5a5a30f5 /doc/source/reference
parent0784052446f6024a00877e8b68f4f3930f720879 (diff)
downloadnumpy-210c361ce38aa7a67d3227f93a6df1b0b4790d33.tar.gz
DOC: reflow paragraph to 80 columns
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/c-api.ufunc.rst16
1 files changed, 7 insertions, 9 deletions
diff --git a/doc/source/reference/c-api.ufunc.rst b/doc/source/reference/c-api.ufunc.rst
index 391acf1cb..07c7b0c80 100644
--- a/doc/source/reference/c-api.ufunc.rst
+++ b/doc/source/reference/c-api.ufunc.rst
@@ -88,7 +88,7 @@ Functions
(element-by-element) function :math:`N` times with the following
signature:
- .. c:function:: void loopfunc( \
+ .. c:function:: void loopfunc(
char** args, npy_intp* dimensions, npy_intp* steps, void* data)
*args*
@@ -173,14 +173,12 @@ Functions
an empty array is passed to the reduce method of the ufunc.
:param name:
- The name for the ufunc as a ``NULL`` terminated string.
- Specifying a name of 'add' or
- 'multiply' enables a special behavior for integer-typed
- reductions when no dtype is given. If the input type is an
- integer (or boolean) data type smaller than the size of the
- `numpy.int_` data type, it will be internally upcast to the
- `numpy.int_` (or `numpy.uint`)
- data type.
+ The name for the ufunc as a ``NULL`` terminated string. Specifying
+ a name of 'add' or 'multiply' enables a special behavior for
+ integer-typed reductions when no dtype is given. If the input type is an
+ integer (or boolean) data type smaller than the size of the `numpy.int_`
+ data type, it will be internally upcast to the `numpy.int_` (or
+ `numpy.uint`) data type.
:param doc:
Allows passing in a documentation string to be stored with the