]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
PyEval_CallObjectWithKeywords() uses fast call with kwargs
authorVictor Stinner <victor.stinner@gmail.com>
Mon, 22 Aug 2016 21:26:00 +0000 (23:26 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Mon, 22 Aug 2016 21:26:00 +0000 (23:26 +0200)
commit155ea65e5c88d250a752ee5321860ef11ede4085
tree88d328b18d1c385c872c057e2fb42d75c463f8f4
parent2990fa11bc6f8a78b90a2a742756a6fd45c4833d
PyEval_CallObjectWithKeywords() uses fast call with kwargs

Issue #27809. _PyObject_FastCallDict() now supports keyword arguments, and so
the args==NULL fast-path can also be used when kwargs is not NULL.
Python/ceval.c