]> granicus.if.org Git - python/commit
bpo-31835: Optimize also FASTCALL using __future__ (#4087)
authorVictor Stinner <victor.stinner@gmail.com>
Wed, 25 Oct 2017 12:26:17 +0000 (05:26 -0700)
committerGitHub <noreply@github.com>
Wed, 25 Oct 2017 12:26:17 +0000 (05:26 -0700)
commit086c3ae5f0995a62092b9080f32dd118c2923453
treef8af12704c97121754f389acbbaaab86845c8ef9
parent95f1a7bb09db03ae239c8cbf43e8890ab12fd782
bpo-31835: Optimize also FASTCALL using __future__ (#4087)

_PyFunction_FastCallDict() and _PyFunction_FastCallKeywords() now
also takes the fast path if the code object uses __future__
(CO_FUTURE_xxx flags).
Objects/call.c