From 9050aaf6eef422e16de9707f981697c668d433db Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Wirtel?= Date: Fri, 17 May 2019 13:34:47 +0200 Subject: [PATCH] [3.7] Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) (GH-13385) (cherry picked from commit a8b46944d72bba6dc76260ed61da5c78d3f9d9c0) Co-authored-by: Jeroen Demeyer --- Objects/call.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3