Commit 65ab952e authored by Stefan Behnel's avatar Stefan Behnel

fix typo

parent a1b5073c
......@@ -361,7 +361,7 @@ __Pyx_CyFunction_get_signature(__pyx_CyFunctionObject *op) {
if (unlikely(!signature_class))
goto bad;
// return Signature.from_function(op)
signature = PyObject_CallMethodObjectArgs(signature_class, PYIDENT("from_function"), op, NULL);
signature = PyObject_CallMethodObjArgs(signature_class, PYIDENT("from_function"), op, NULL);
Py_DECREF(signature_class);
if (likely(signature))
return signature;
......
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