]> granicus.if.org Git - python/commit
Issue #27128: slot_sq_item() uses fast call
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 19 Aug 2016 16:19:42 +0000 (18:19 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 19 Aug 2016 16:19:42 +0000 (18:19 +0200)
commit5e87749a8eec95e277c0d1ec5f40467cefcb9957
tree3e212c34c3fc2464fdc00b7b5f2564faedbf3004
parent018016d8e338dc99353b96df2c570bf2fd63fce2
Issue #27128: slot_sq_item() uses fast call

slot_sq_item() now calls _PyObject_FastCall() to avoid the creation of a
temporary tuple of 1 item to pass the 'item' argument to the slot function.
Objects/typeobject.c