]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Add _PyObject_FastCallKeywords()
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 24 Aug 2016 22:29:32 +0000 (00:29 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 24 Aug 2016 22:29:32 +0000 (00:29 +0200)
commit577e1f8cb41b76ea763910a47abf42a1952ddec3
treec813887a0af4c5b7312b2e835677546584c067ea
parent53868aaabb154c11bf666b31662bb4ae8bc6ec79
Add _PyObject_FastCallKeywords()

Issue #27830: Similar to _PyObject_FastCallDict(), but keyword arguments are
also passed in the same C array than positional arguments, rather than being
passed as a Python dict.
Include/abstract.h
Include/funcobject.h
Objects/abstract.c
Python/ceval.c