STINNER Victor <vstin...@redhat.com> added the comment:

> PyObject_CallMethodArgs(PyObject *obj, const char *name, PyObject *args, 
> PyObject *kwargs)

This API is not efficient. It requires to create a temporary tuple and 
dictionary to pass position and keyword arguments. Look at FASTCALL which has a 
very different API. Sadly, FASTCALL APIs are currently private.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue33829>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to