Skip to content

Commit 64da038

Browse files
committed
the third argument to pow is None, not NoValue
1 parent e6ad1ad commit 64da038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/nodes/expression/TernaryArithmetic.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private TernaryArithmeticExpression(LookupAndCallTernaryNode callNode, Expressio
9494

9595
@Override
9696
public Object execute(VirtualFrame frame) {
97-
return callNode.execute(left.execute(frame), right.execute(frame), PNone.NO_VALUE);
97+
return callNode.execute(left.execute(frame), right.execute(frame), PNone.NONE);
9898
}
9999

100100
@Override

0 commit comments

Comments
 (0)