From: Jeroen Demeyer Date: Fri, 17 May 2019 10:21:35 +0000 (+0200) Subject: Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) X-Git-Tag: v3.8.0b1~334 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a8b46944d72bba6dc76260ed61da5c78d3f9d9c0;p=thirdparty%2FPython%2Fcpython.git Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) --- diff --git a/Objects/call.c b/Objects/call.c index 68f9e879fa76..337ca8110809 100644 --- a/Objects/call.c +++ b/Objects/call.c @@ -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; }