commit | d8735720955557d8056bc1fca41ad1c3b48aa63c | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Fri Sep 09 12:36:44 2016 -0700 |
committer | Victor Stinner <victor.stinner@gmail.com> | Fri Sep 09 12:36:44 2016 -0700 |
tree | 87c04970bcbbd4ff7fd9b3c4ff5f138d98b7dc1e | |
parent | 84f6a8f725c0f7a06d5e77b283d6028bf854443c [diff] |
Add _PyObject_FastCallKeywords() Issue #27830: Add _PyObject_FastCallKeywords(): avoid the creation of a temporary dictionary for keyword arguments. Other changes: * Cleanup call_function() and fast_function() (ex: rename nk to nkwargs) * Remove now useless do_call(), replaced with _PyObject_FastCallKeywords()