Commit 71ef656e authored by Stefan Behnel's avatar Stefan Behnel

Add comment.

parent e281445e
...@@ -1946,6 +1946,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCall(PyObject *func, PyObject ...@@ -1946,6 +1946,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCall(PyObject *func, PyObject
return f(func, args, nargs, NULL); return f(func, args, nargs, NULL);
} }
#elif __Pyx_CyFunction_USED && CYTHON_BACKPORT_VECTORCALL #elif __Pyx_CyFunction_USED && CYTHON_BACKPORT_VECTORCALL
// exclude fused functions for now
if (Py_TYPE(func) == __pyx_CyFunctionType) { if (Py_TYPE(func) == __pyx_CyFunctionType) {
__pyx_vectorcallfunc f = __Pyx_CyFunction_func_vectorcall(func); __pyx_vectorcallfunc f = __Pyx_CyFunction_func_vectorcall(func);
if (f) return f(func, args, nargs, NULL); if (f) return f(func, args, nargs, NULL);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment