diff options
author | Allan Haldane <allan.haldane@gmail.com> | 2019-08-31 20:43:13 -0400 |
---|---|---|
committer | Allan Haldane <allan.haldane@gmail.com> | 2019-09-05 18:07:18 -0400 |
commit | d6f7524defc808f32219528350429d5569696183 (patch) | |
tree | 717e40e1f6c4f3de714211e7e0e7ef947dc34b54 /doc/source/reference/c-api | |
parent | 7c3adfb7436a37d995721f1c793e5e3ced6d9b7e (diff) | |
download | numpy-d6f7524defc808f32219528350429d5569696183.tar.gz |
BUG: Fix fieldless comparison broadcasting
Fixes #13438
Diffstat (limited to 'doc/source/reference/c-api')
-rw-r--r-- | doc/source/reference/c-api/array.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/reference/c-api/array.rst b/doc/source/reference/c-api/array.rst index 215584b62..8936a4752 100644 --- a/doc/source/reference/c-api/array.rst +++ b/doc/source/reference/c-api/array.rst @@ -997,8 +997,9 @@ argument must be a :c:type:`PyObject *<PyObject>` that can be directly interpret called on flexible dtypes. Types that are attached to an array will always be sized, hence the array form of this macro not existing. - ..versionchanged:: 1.18.0 - For structured datatypes with no fields this function now return False. + .. versionchanged:: 1.18 + + For structured datatypes with no fields this function now returns False. .. c:function:: PyTypeNum_ISUSERDEF(num) |