We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c789490 commit b0618b9Copy full SHA for b0618b9
vm/src/frame.rs
@@ -1680,7 +1680,7 @@ impl ExecutingFrame<'_> {
1680
bytecode::BinaryOperator::Add => vm._iadd(a_ref, b_ref),
1681
bytecode::BinaryOperator::Multiply => vm._imul(a_ref, b_ref),
1682
bytecode::BinaryOperator::MatrixMultiply => vm._imatmul(a_ref, b_ref),
1683
- bytecode::BinaryOperator::Power => vm._ipow(a_ref, b_ref),
+ bytecode::BinaryOperator::Power => vm._ipow(a_ref, b_ref, &vm.ctx.none()),
1684
bytecode::BinaryOperator::Divide => vm._itruediv(a_ref, b_ref),
1685
bytecode::BinaryOperator::FloorDivide => vm._ifloordiv(a_ref, b_ref),
1686
bytecode::BinaryOperator::Modulo => vm._imod(a_ref, b_ref),
0 commit comments