diff options
author | takanori-pskq <takanori17h@gmail.com> | 2020-10-06 17:49:08 +0900 |
---|---|---|
committer | takanori-pskq <takanori17h@gmail.com> | 2020-10-06 17:49:08 +0900 |
commit | 3c5de8a2bb6a75faef20f1b15985c03724271be5 (patch) | |
tree | c2b89f2a433962d2106398d5930fccaa998c1e25 /doc/source/reference/c-api | |
parent | 04ad2ce13c4b8a0557c08010d3121cbbaa1cad5a (diff) | |
download | numpy-3c5de8a2bb6a75faef20f1b15985c03724271be5.tar.gz |
Fix: Remove the link for `PyArrayMapIterObject`
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/types-and-structures.rst | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/source/reference/c-api/types-and-structures.rst b/doc/source/reference/c-api/types-and-structures.rst index 2f4919f45..59361fd62 100644 --- a/doc/source/reference/c-api/types-and-structures.rst +++ b/doc/source/reference/c-api/types-and-structures.rst @@ -1436,10 +1436,8 @@ for completeness and assistance in understanding the code. Advanced indexing is handled with this Python type. It is simply a loose wrapper around the C-structure containing the variables needed for advanced array indexing. The associated C-structure, - :c:type:`PyArrayMapIterObject`, is useful if you are trying to + ``PyArrayMapIterObject``, is useful if you are trying to understand the advanced-index mapping code. It is defined in the ``arrayobject.h`` header. This type is not exposed to Python and could be replaced with a C-structure. As a Python type it takes advantage of reference- counted memory management. - - .. c:type:: PyArrayMapIterObject |