]> granicus.if.org Git - python/commitdiff
Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343)
authorJeroen Demeyer <J.Demeyer@UGent.be>
Fri, 17 May 2019 10:21:35 +0000 (12:21 +0200)
committerStéphane Wirtel <stephane@wirtel.be>
Fri, 17 May 2019 10:21:35 +0000 (12:21 +0200)
Objects/call.c

index 68f9e879fa76b4b057459ba9e7594851ab773241..337ca8110809398eb4374df23554087c0636a7ca 100644 (file)
@@ -701,7 +701,7 @@ _PyMethodDef_RawFastCallKeywords(PyMethodDef *method, PyObject *self,
 
     default:
         PyErr_SetString(PyExc_SystemError,
-                        "Bad call flags in _PyCFunction_FastCallKeywords. "
+                        "Bad call flags in _PyMethodDef_RawFastCallKeywords. "
                         "METH_OLDARGS is no longer supported!");
         goto exit;
     }