• Victor Stinner's avatar
    _asyncio uses _PyObject_CallMethodIdObjArgs() · cb2128ca
    Victor Stinner yazdı
    Issue #28920: Replace _PyObject_CallMethodId(obj, meth, "O", arg) with
    _PyObject_CallMethodIdObjArgs(obj, meth, arg, NULL) to avoid
    _PyObject_CallMethodId() special case when arg is a tuple.
    
    If arg is a tuple, _PyObject_CallMethodId() unpacks the tuple: obj.meth(*arg).
    cb2128ca
_asynciomodule.c 61.2 KB