]> granicus.if.org Git - python/commit
Fix PyCFunction_Call() performance issue
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 9 Feb 2017 01:01:37 +0000 (02:01 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Thu, 9 Feb 2017 01:01:37 +0000 (02:01 +0100)
commit12c5838dae390793009d73ba486b6b2be18cfd43
tree382a22051a5ad49eafbc310149554c61d78b9620
parent3722f1f483065338e83ec1e28cd8dc8412ef39d7
Fix PyCFunction_Call() performance issue

Issue #29259, #29465: PyCFunction_Call() doesn't create anymore a redundant
tuple to pass positional arguments for METH_VARARGS.

Add a new cfunction_call() subfunction.
Objects/methodobject.c