diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-10-10 21:38:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-10 21:38:02 +0300 |
commit | 1ed87fa09d5a5887e2ef47b31e6fe2fefff9882a (patch) | |
tree | 7d186c82b734faab26a38ada2037be0566c48871 /doc/source/reference/c-api/array.rst | |
parent | c6f8fb2f390f5694501a2a955f232c57a042ce0e (diff) | |
parent | 6d8670ac4577d2e1b13e6c53b829b2dadb69a463 (diff) | |
download | numpy-1ed87fa09d5a5887e2ef47b31e6fe2fefff9882a.tar.gz |
Merge pull request #22421 from HaoZeke/cobjToCapsule
DOC: Replace CObject with Capsule consistently
Diffstat (limited to 'doc/source/reference/c-api/array.rst')
-rw-r--r-- | doc/source/reference/c-api/array.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/c-api/array.rst b/doc/source/reference/c-api/array.rst index e4028b7b4..bb22a1b03 100644 --- a/doc/source/reference/c-api/array.rst +++ b/doc/source/reference/c-api/array.rst @@ -152,7 +152,7 @@ and its sub-types). .. c:function:: int PyArray_FinalizeFunc(PyArrayObject* arr, PyObject* obj) - The function pointed to by the CObject + The function pointed to by the :c:type:`PyCapsule` :obj:`~numpy.class.__array_finalize__`. The first argument is the newly created sub-type. The second argument (if not NULL) is the "parent" array (if the array was created using |