]> granicus.if.org Git - python/commit
Optimize _PyFunction_FastCallDict() when kwargs is {}
authorVictor Stinner <victor.stinner@gmail.com>
Tue, 3 Jan 2017 01:01:42 +0000 (02:01 +0100)
committerVictor Stinner <victor.stinner@gmail.com>
Tue, 3 Jan 2017 01:01:42 +0000 (02:01 +0100)
commit865a0f621fae0a63f0db186d9b7f30d1cebfa1de
treed7a95e54381e1729f431896a6b2812b63a39d8f2
parent6f7c0ae46d66593b4ca0f248b94b9e1d567114bb
Optimize _PyFunction_FastCallDict() when kwargs is {}

Issue #28839: Optimize _PyFunction_FastCallDict() when kwargs is an empty
dictionary, avoid the creation of an useless empty tuple.
Python/ceval.c