Skip to content

Commit

Permalink
Update Objects/complexobject.c
Browse files Browse the repository at this point in the history
Co-authored-by: Bénédikt Tran <10796600+picnixz@users.noreply.github.com>
  • Loading branch information
skirpichev and picnixz authored Oct 31, 2024
1 parent 38762b3 commit e685bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Objects/complexobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ real_to_complex(PyObject **pobj, Py_complex *pc)
if (PyComplex_Check(w)) { \
Py_complex b = ((PyComplexObject *)w)->cval; \
if (PyComplex_Check(v)) { \
a = ((PyComplexObject *)(v))->cval; \
a = ((PyComplexObject *)v)->cval; \
a = _Py_c_##FUNC(a, b); \
} \
else if (real_to_double(&v, &a.real) < 0) { \
Expand Down

0 comments on commit e685bd9

Please sign in to comment.