Skip to content

Commit bd04ed3

Browse files
committed
py/objcomplex: Fix typo in ternary expression.
This typo actually did the correct thing, but it was very obscure (came about from think in terms of Python's "x if cond else y" expression).
1 parent 91eb015 commit bd04ed3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/objcomplex.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ mp_obj_t mp_obj_complex_binary_op(mp_uint_t op, mp_float_t lhs_real, mp_float_t
223223
mp_float_t abs1 = MICROPY_FLOAT_C_FUN(sqrt)(lhs_real*lhs_real + lhs_imag*lhs_imag);
224224
if (abs1 == 0) {
225225
if (rhs_imag == 0 && rhs_real >= 0) {
226-
lhs_real = 1 ? rhs_real == 0 : 0;
226+
lhs_real = (rhs_real == 0);
227227
rhs_real = 0;
228228
} else {
229229
mp_raise_msg(&mp_type_ZeroDivisionError, "0.0 to a complex power");

0 commit comments

Comments
 (0)