@@ -1654,7 +1654,7 @@ impl ExecutingFrame<'_> {
16541654 bytecode:: BinaryOperator :: Add => vm. _add ( a_ref, b_ref) ,
16551655 bytecode:: BinaryOperator :: Multiply => vm. _mul ( a_ref, b_ref) ,
16561656 bytecode:: BinaryOperator :: MatrixMultiply => vm. _matmul ( a_ref, b_ref) ,
1657- bytecode:: BinaryOperator :: Power => vm. _pow ( a_ref, b_ref, & vm. ctx . none ( ) ) ,
1657+ bytecode:: BinaryOperator :: Power => vm. _pow ( a_ref, b_ref, vm. ctx . none . as_object ( ) ) ,
16581658 bytecode:: BinaryOperator :: Divide => vm. _truediv ( a_ref, b_ref) ,
16591659 bytecode:: BinaryOperator :: FloorDivide => vm. _floordiv ( a_ref, b_ref) ,
16601660 bytecode:: BinaryOperator :: Modulo => vm. _mod ( a_ref, b_ref) ,
@@ -1680,7 +1680,7 @@ impl ExecutingFrame<'_> {
16801680 bytecode:: BinaryOperator :: Add => vm. _iadd ( a_ref, b_ref) ,
16811681 bytecode:: BinaryOperator :: Multiply => vm. _imul ( a_ref, b_ref) ,
16821682 bytecode:: BinaryOperator :: MatrixMultiply => vm. _imatmul ( a_ref, b_ref) ,
1683- bytecode:: BinaryOperator :: Power => vm. _ipow ( a_ref, b_ref, & vm. ctx . none ( ) ) ,
1683+ bytecode:: BinaryOperator :: Power => vm. _ipow ( a_ref, b_ref, vm. ctx . none . as_object ( ) ) ,
16841684 bytecode:: BinaryOperator :: Divide => vm. _itruediv ( a_ref, b_ref) ,
16851685 bytecode:: BinaryOperator :: FloorDivide => vm. _ifloordiv ( a_ref, b_ref) ,
16861686 bytecode:: BinaryOperator :: Modulo => vm. _imod ( a_ref, b_ref) ,
0 commit comments