diff options
| author | mattip <matti.picus@gmail.com> | 2018-08-17 09:39:44 +0300 |
|---|---|---|
| committer | mattip <matti.picus@gmail.com> | 2018-08-17 09:39:44 +0300 |
| commit | 210c361ce38aa7a67d3227f93a6df1b0b4790d33 (patch) | |
| tree | 87d3ea547b7b221c0d3ae4727d3003dc5a5a30f5 /doc/source/reference | |
| parent | 0784052446f6024a00877e8b68f4f3930f720879 (diff) | |
| download | numpy-210c361ce38aa7a67d3227f93a6df1b0b4790d33.tar.gz | |
DOC: reflow paragraph to 80 columns
Diffstat (limited to 'doc/source/reference')
| -rw-r--r-- | doc/source/reference/c-api.ufunc.rst | 16 |
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 |
