]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
Optimize call to Python function without argument
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 22 Aug 2016 10:29:42 +0000 (12:29 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 22 Aug 2016 10:29:42 +0000 (12:29 +0200)
commit2eedc119c211a793d0c9a0beb1abd4bb12e0802e
tree694f45281e7eeeab91a58024632e3c3f711d5c4d
parent0add84b9b855c10e9c6434286c2b1157a754a39f
Optimize call to Python function without argument

Issue #27128. When a Python function is called with no arguments, but all
parameters have a default value: use default values as arguments for the fast
path.
Python/ceval.c