You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems like the _PyArg_VaParseTupleAndKeywordsFast() function is no longer used in the Python code base.
Moreover, Argument Clinic (Tools/clinic/clinic.py) can produce code calling the _PyArg_ParseTupleAndKeywordsFast() function, but it is not the case currently: _PyArg_ParseStackAndKeywords() is used instead.
What's the status of these two functions, _PyArg_ParseStackAndKeywords() and _PyArg_VaParseTupleAndKeywordsFast()?
It seems like the
_PyArg_VaParseTupleAndKeywordsFast()function is no longer used in the Python code base.Moreover, Argument Clinic (
Tools/clinic/clinic.py) can produce code calling the_PyArg_ParseTupleAndKeywordsFast()function, but it is not the case currently:_PyArg_ParseStackAndKeywords()is used instead.What's the status of these two functions,
_PyArg_ParseStackAndKeywords()and_PyArg_VaParseTupleAndKeywordsFast()?cc @erlend-aasland @serhiy-storchaka
Linked PRs