Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343)

This commit is contained in:
Jeroen Demeyer 2019-05-17 12:21:35 +02:00 committed by Stéphane Wirtel
parent 6faad355db
commit a8b46944d7

View 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;
}