Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cadd5b6

Browse files
committed
Fix grouping, again. This time properly :-) Sorry, guys.
1 parent 3a9d061 commit cadd5b6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Objects/abstract.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -813,12 +813,12 @@ PyNumber_InPlaceAdd(PyObject *v, PyObject *w)
813813
PyNumber_Add, 0) <= 0)
814814
return x;
815815
}
816-
else if ((HASINPLACE(v)
816+
else if (HASINPLACE(v)
817817
&& ((v->ob_type->tp_as_sequence != NULL &&
818818
(f = v->ob_type->tp_as_sequence->sq_inplace_concat)
819-
!= NULL)))
819+
!= NULL)
820820
|| (v->ob_type->tp_as_number != NULL &&
821-
(f = v->ob_type->tp_as_number->nb_inplace_add) != NULL))
821+
(f = v->ob_type->tp_as_number->nb_inplace_add) != NULL)))
822822
return (*f)(v, w);
823823

824824
BINOP(v, w, "__add__", "__radd__", PyNumber_Add);

0 commit comments

Comments
 (0)