]> granicus.if.org Git - python/commit
PyCFunction_Call() now calls _PyCFunction_FastCallDict()
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 18 Jan 2017 13:04:37 +0000 (14:04 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Wed, 18 Jan 2017 13:04:37 +0000 (14:04 +0100)
commitc89ef828cf1db1b0d87d83b19c5216290daa2813
tree07fb35108df25437504808b782536e1331a2ce51
parent250e4b0063fab35770719b64d1e36209c4aa2596
PyCFunction_Call() now calls _PyCFunction_FastCallDict()

Issue #29259. We had 3 versions of similar code:

* PyCFunction_Call()
* _PyCFunction_FastCallDict()
* _PyCFunction_FastCallKeywords()

PyCFunction_Call() now calls _PyCFunction_FastCallDict() to factorize the code.
Objects/methodobject.c