diff options
author | yuki <drsuaimqjgar@gmail.com> | 2023-04-14 14:30:14 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-13 22:30:14 -0700 |
commit | a39886909017c96972348e5de0eae207f6417505 (patch) | |
tree | 904992f96c3766e3fae7c931cd0ba2d46162e492 /doc/source/reference/c-api | |
parent | 3fd058ce9ec610f3a7e04eb0592e5ab1848ee58c (diff) | |
download | numpy-a39886909017c96972348e5de0eae207f6417505.tar.gz |
DOC: Remove descriptions of non-existent C-types (#23584)
Specifically PyUFuncLoopObject and PyUFuncReduceObject
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/types-and-structures.rst | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/source/reference/c-api/types-and-structures.rst b/doc/source/reference/c-api/types-and-structures.rst index 1fe7c0e93..f750f7531 100644 --- a/doc/source/reference/c-api/types-and-structures.rst +++ b/doc/source/reference/c-api/types-and-structures.rst @@ -1456,22 +1456,6 @@ memory management. These types are not accessible directly from Python, and are not exposed to the C-API. They are included here only for completeness and assistance in understanding the code. - -.. c:type:: PyUFuncLoopObject - - A loose wrapper for a C-structure that contains the information - needed for looping. This is useful if you are trying to understand - the ufunc looping code. The :c:type:`PyUFuncLoopObject` is the associated - C-structure. It is defined in the ``ufuncobject.h`` header. - -.. c:type:: PyUFuncReduceObject - - A loose wrapper for the C-structure that contains the information - needed for reduce-like methods of ufuncs. This is useful if you are - trying to understand the reduce, accumulate, and reduce-at - code. The :c:type:`PyUFuncReduceObject` is the associated C-structure. It - is defined in the ``ufuncobject.h`` header. - .. c:type:: PyUFunc_Loop1d A simple linked-list of C-structures containing the information needed |