summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-09-10 18:00:53 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-09-10 18:00:53 +0100
commit71ef656e5087c7f6da6eb96aacfb718a0e657931 (patch)
treeb57b6ff199e91e4edc71828a97c970b27daaf8fd
parente281445ef60ab88d0699b47daacb8cb2f3833259 (diff)
downloadcython-71ef656e5087c7f6da6eb96aacfb718a0e657931.tar.gz
Add comment.
-rw-r--r--Cython/Utility/ObjectHandling.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cython/Utility/ObjectHandling.c b/Cython/Utility/ObjectHandling.c
index db9357fff..e2b82bf4b 100644
--- a/Cython/Utility/ObjectHandling.c
+++ b/Cython/Utility/ObjectHandling.c
@@ -1946,6 +1946,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCall(PyObject *func, PyObject
return f(func, args, nargs, NULL);
}
#elif __Pyx_CyFunction_USED && CYTHON_BACKPORT_VECTORCALL
+ // exclude fused functions for now
if (Py_TYPE(func) == __pyx_CyFunctionType) {
__pyx_vectorcallfunc f = __Pyx_CyFunction_func_vectorcall(func);
if (f) return f(func, args, nargs, NULL);