diff options
author | mattip <matti.picus@gmail.com> | 2018-04-30 18:13:10 +0300 |
---|---|---|
committer | Marten van Kerkwijk <mhvk@astro.utoronto.ca> | 2018-05-28 09:36:25 -0400 |
commit | 69a77fb790d6545969c17f7aed0fe160a6a5bc6a (patch) | |
tree | 28d15fa34c3827610a46ec4cb8fc83aac9e4895b /numpy/core/include | |
parent | 4291c9440b6586bc6b9deec55178c21f935b02a7 (diff) | |
download | numpy-69a77fb790d6545969c17f7aed0fe160a6a5bc6a.tar.gz |
DOC: Clarify C-API for generalized ufuncs.
Diffstat (limited to 'numpy/core/include')
-rw-r--r-- | numpy/core/include/numpy/ufuncobject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/include/numpy/ufuncobject.h b/numpy/core/include/numpy/ufuncobject.h index d0ac1fd7d..4b1b3d325 100644 --- a/numpy/core/include/numpy/ufuncobject.h +++ b/numpy/core/include/numpy/ufuncobject.h @@ -167,7 +167,7 @@ typedef struct _tagPyUFuncObject { int *core_dim_ixs; /* * positions of 1st core dimensions of each - * argument in core_dim_ixs + * argument in core_dim_ixs, equivalent to cumsum(core_num_dims) */ int *core_offsets; /* signature string for printing purpose */ |