]> granicus.if.org Git - python/commit
calliter_iternext() now uses fast call
authorVictor Stinner <victor.stinner@gmail.com>
Fri, 19 Aug 2016 16:47:10 +0000 (18:47 +0200)
committerVictor Stinner <victor.stinner@gmail.com>
Fri, 19 Aug 2016 16:47:10 +0000 (18:47 +0200)
commit99ee9c70a73ec2f3db68785821a9f2867c3f637f
tree4863d1e82980d64bcf9ecbfb6002f6e35c3c980a
parent6911267615ab805d555ef2b0a2458feebbc80d6d
calliter_iternext() now uses fast call

Issue #27128: calliter_iternext() now calls _PyObject_FastCall() to avoid a
temporary empty tuple.

Cleanup also the code to reduce the indentation level.
Objects/iterobject.c