File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ These macros access the :c:type:`PyArrayObject` structure members and are
24
24
defined in ``ndarraytypes.h ``. The input argument, *arr *, can be any
25
25
:c:type: `PyObject *<PyObject> ` that is directly interpretable as a
26
26
:c:type: `PyArrayObject * ` (any instance of the :c:data: `PyArray_Type `
27
- and itssub -types).
27
+ and its sub -types).
28
28
29
29
.. c :function :: int PyArray_NDIM (PyArrayObject *arr)
30
30
@@ -942,7 +942,7 @@ argument must be a :c:type:`PyObject *<PyObject>` that can be directly interpret
942
942
Type represents one of the flexible array types ( :c:data: `NPY_STRING `,
943
943
:c:data: `NPY_UNICODE `, or :c:data: `NPY_VOID ` ).
944
944
945
- .. c:function:: int PyDataType_ISUNSIZED(PyArray_Descr* descr):
945
+ .. c:function:: int PyDataType_ISUNSIZED(PyArray_Descr* descr)
946
946
947
947
Type has no size information attached, and can be resized. Should only be
948
948
called on flexible dtypes. Types that are attached to an array will always
Original file line number Diff line number Diff line change @@ -88,4 +88,4 @@ Binary Format Description
88
88
.. autosummary ::
89
89
:toctree: generated/
90
90
91
- lib.format
91
+ lib.format
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ processors that use pipelining to enhance fundamental operations.
115
115
The :c:func: `PyArray_IterAllButAxis ` ( ``array ``, ``&dim `` ) constructs an
116
116
iterator object that is modified so that it will not iterate over the
117
117
dimension indicated by dim. The only restriction on this iterator
118
- object, is that the :c:func: `PyArray_Iter_GOTO1D ` ( ``it ``, ``ind `` ) macro
118
+ object, is that the :c:func: `PyArray_ITER_GOTO1D ` ( ``it ``, ``ind `` ) macro
119
119
cannot be used (thus flat indexing won't work either if you pass this
120
120
object back to Python --- so you shouldn't do this). Note that the
121
121
returned object from this routine is still usually cast to
You can’t perform that action at this time.
0 commit comments