summaryrefslogtreecommitdiff
path: root/doc/source/reference/c-api.maskna.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/reference/c-api.maskna.rst')
-rw-r--r--doc/source/reference/c-api.maskna.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/c-api.maskna.rst b/doc/source/reference/c-api.maskna.rst
index 374998141..6abb624eb 100644
--- a/doc/source/reference/c-api.maskna.rst
+++ b/doc/source/reference/c-api.maskna.rst
@@ -308,9 +308,9 @@ consisting of::
static char *kwlist[] = {"a", "b", "out", NULL};
if (!PyArg_ParseTupleAndKeywords(args, kwds, "O&O&|O&", kwlist,
- &PyArray_Converter, &a,
- &PyArray_Converter, &b,
- &PyArray_OutputConverter, &out)) {
+ &PyArray_AllowNAConverter, &a,
+ &PyArray_AllowNAConverter, &b,
+ &PyArray_OutputAllowNAConverter, &out)) {
return NULL;
}