Commit e281445e authored by Stefan Behnel's avatar Stefan Behnel

Discard a C comment from the generated files.

parent 54211e32
......@@ -662,8 +662,8 @@ static PyObject *__Pyx_CyFunction_CallAsMethod(PyObject *func, PyObject *args, P
__pyx_CyFunctionObject *cyfunc = (__pyx_CyFunctionObject *) func;
#if CYTHON_METH_FASTCALL
/* Prefer vectorcall if available. This is not the typical case, as
* CPython would normally use vectorcall directly instead of tp_call. */
// Prefer vectorcall if available. This is not the typical case, as
// CPython would normally use vectorcall directly instead of tp_call.
__pyx_vectorcallfunc vc = __Pyx_CyFunction_func_vectorcall(cyfunc);
if (vc) {
return __Pyx_PyVectorcall_FastCallDict(func, vc, &PyTuple_GET_ITEM(args, 0), PyTuple_GET_SIZE(args), kw);
......
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