diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2021-06-29 09:02:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-29 10:02:16 -0600 |
commit | 07272c441ee1a12e260a55b252835ff1e1ca0c50 (patch) | |
tree | 9ed7a698ecfd666087195550e8a77583e09375f4 /doc/source/reference/c-api | |
parent | 07685e4386b4dbfbe52a1ecd95bc7fcc397b2411 (diff) | |
download | numpy-07272c441ee1a12e260a55b252835ff1e1ca0c50.tar.gz |
MAINT: Move masked strided/inner-loop code to its "final" place (#19370)
* MAINT: Move masked code 1:1 (does not work)
* MAINT: Fixup code move and small follow-up fixes
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/types-and-structures.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/doc/source/reference/c-api/types-and-structures.rst b/doc/source/reference/c-api/types-and-structures.rst index ab82fda87..75a97c20e 100644 --- a/doc/source/reference/c-api/types-and-structures.rst +++ b/doc/source/reference/c-api/types-and-structures.rst @@ -811,7 +811,7 @@ PyUFunc_Type and PyUFuncObject char *core_signature; PyUFunc_TypeResolutionFunc *type_resolver; PyUFunc_LegacyInnerLoopSelectionFunc *legacy_inner_loop_selector; - PyUFunc_MaskedInnerLoopSelectionFunc *masked_inner_loop_selector; + void *reserved2; npy_uint32 *op_flags; npy_uint32 *iter_flags; /* new in API version 0x0000000D */ @@ -965,10 +965,6 @@ PyUFunc_Type and PyUFuncObject For a possible future loop selector with a different signature. - .. c:member:: PyUFunc_MaskedInnerLoopSelectionFunc *masked_inner_loop_selector - - Function which returns a masked inner loop for the ufunc - .. c:member:: npy_uint32 op_flags Override the default operand flags for each ufunc operand. |