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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy