summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Berg <sebastianb@nvidia.com>2023-01-12 09:18:29 +0100
committerSebastian Berg <sebastianb@nvidia.com>2023-01-12 09:18:29 +0100
commit11badd45c24b5ab5861ffdbaf14c9a8ff1d90448 (patch)
treebef8d7450e8de5f6cc81a0e74f6aa125028b2be4
parent522a71f8a44b14354152f628387ca108e367688d (diff)
downloadnumpy-11badd45c24b5ab5861ffdbaf14c9a8ff1d90448.tar.gz
DOC: Add release note for cython exception fixes
-rw-r--r--doc/release/upcoming_changes/22997.improvement.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/release/upcoming_changes/22997.improvement.rst b/doc/release/upcoming_changes/22997.improvement.rst
new file mode 100644
index 000000000..156c9dece
--- /dev/null
+++ b/doc/release/upcoming_changes/22997.improvement.rst
@@ -0,0 +1,5 @@
+Corrected error handling for NumPy C-API in Cython
+--------------------------------------------------
+Many NumPy C functions defined for use in Cython were lacking the
+correct error indicator like ``except -1`` or ``except *``.
+These have now been added.