Kaydet (Commit) 6b958f7d authored tarafından Thomas Wouters's avatar Thomas Wouters

Fix grouping: this is how I intended it, misguided as I was in boolean

operator associativity.
üst 501b926d
......@@ -813,8 +813,8 @@ PyNumber_InPlaceAdd(PyObject *v, PyObject *w)
PyNumber_Add, 0) <= 0)
return x;
}
else if ((HASINPLACE(v)
&& (v->ob_type->tp_as_sequence != NULL &&
else if (HASINPLACE(v)
&& ((v->ob_type->tp_as_sequence != NULL &&
(f = v->ob_type->tp_as_sequence->sq_inplace_concat) != NULL))
|| (v->ob_type->tp_as_number != NULL &&
(f = v->ob_type->tp_as_number->nb_inplace_add) != NULL))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment