diff options
author | Jeroen Demeyer <J.Demeyer@UGent.be> | 2019-05-30 15:11:22 +0200 |
---|---|---|
committer | Petr Viktorin <encukou@gmail.com> | 2019-05-30 15:11:22 +0200 |
commit | 37788bc23f6f1ed0362b9b3b248daf296c024849 (patch) | |
tree | adfc68a022f5e0ca5c06adf47d35292d802b5e77 /Objects/descrobject.c | |
parent | bpo-37099: Silence DeprecationWarning in test_inspect (GH-13679) (diff) | |
download | cpython-37788bc23f6f1ed0362b9b3b248daf296c024849.tar.gz cpython-37788bc23f6f1ed0362b9b3b248daf296c024849.tar.bz2 cpython-37788bc23f6f1ed0362b9b3b248daf296c024849.zip |
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Diffstat (limited to 'Objects/descrobject.c')
-rw-r--r-- | Objects/descrobject.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 759018503c6..3aaeaa6e890 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -264,9 +264,9 @@ methoddescr_call(PyMethodDescrObject *descr, PyObject *args, PyObject *kwargs) // same to methoddescr_call(), but use FASTCALL convention. PyObject * -_PyMethodDescr_FastCallKeywords(PyObject *descrobj, - PyObject *const *args, size_t nargsf, - PyObject *kwnames) +_PyMethodDescr_Vectorcall(PyObject *descrobj, + PyObject *const *args, size_t nargsf, + PyObject *kwnames) { assert(Py_TYPE(descrobj) == &PyMethodDescr_Type); PyMethodDescrObject *descr = (PyMethodDescrObject *)descrobj; @@ -756,7 +756,7 @@ PyDescr_NewMethod(PyTypeObject *type, PyMethodDef *method) type, method->ml_name); if (descr != NULL) { descr->d_method = method; - descr->vectorcall = &_PyMethodDescr_FastCallKeywords; + descr->vectorcall = _PyMethodDescr_Vectorcall; } return (PyObject *)descr; } |