summaryrefslogtreecommitdiffstats
path: root/Include/internal/pycore_call.h
Commit message (Collapse)AuthorAgeFilesLines
* bpo-38644: Add _PyObject_Call() (GH-17089)Victor Stinner2019-11-141-0/+39
* Add pycore_call.h internal header file. * Add _PyObject_Call(): PyObject_Call() with tstate * Add _PyObject_CallNoArgTstate(): _PyObject_CallNoArg() with tstate * Add _PyObject_FastCallDictTstate(): _PyObject_FastCallDict() with tstate * _PyObject_Call_Prepend() now takes tstate * Replace _PyObject_FastCall() calls with _PyObject_VectorcallTstate() calls