]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
PyEval_CallObjectWithKeywords() uses fast call
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 19 Aug 2016 14:42:42 +0000 (16:42 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 19 Aug 2016 14:42:42 +0000 (16:42 +0200)
commit3f745bf1d90a75a0e3df5ba4d59b3ffbb71e3ebc
treefc9fc483d46213f1a9c91a7d0b5d6150112c78d7
parent9be7e7b52fa4b48012e956167a344df691195a04
PyEval_CallObjectWithKeywords() uses fast call

Issue #27128: Modify PyEval_CallObjectWithKeywords() to use
_PyObject_FastCall() when args==NULL and kw==NULL. It avoids the creation of a
temporary empty tuple for positional arguments.
Python/ceval.c