Skip to content

Commit fa07d30

Browse files
committed
Fixed doBoolSequence() skipping some iterable elements
Signed-off-by: Octave Larose <[email protected]>
1 parent 66661b4 commit fa07d30

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/modules/BuiltinFunctions.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,6 @@ boolean doBoolSequence(VirtualFrame frame,
326326
} else if (nodeType == NodeType.ANY && isTrueNode.execute(frame, internalArray[i])) {
327327
return true;
328328
}
329-
i++;
330329
}
331330

332331
return nodeType == NodeType.ALL;

0 commit comments

Comments
 (0)