From: Stéphane Wirtel Date: Fri, 17 May 2019 11:34:47 +0000 (+0200) Subject: [3.7] Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) (GH-13385) X-Git-Tag: v3.7.4rc1~136 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9050aaf6eef422e16de9707f981697c668d433db;p=thirdparty%2FPython%2Fcpython.git [3.7] Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) (GH-13385) (cherry picked from commit a8b46944d72bba6dc76260ed61da5c78d3f9d9c0) Co-authored-by: Jeroen Demeyer --- diff --git a/Objects/call.c b/Objects/call.c index b53a98c76b0e..e6076e7005e9 100644 --- a/Objects/call.c +++ b/Objects/call.c @@ -699,7 +699,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; }