[Python-checkins] CVS: python/dist/src/Objects abstract.c,2.49,2.50

Thomas Wouters python-dev@python.org
Thu, 31 Aug 2000 00:02:28 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory slayer.i.sourceforge.net:/tmp/cvs-serv29018/Objects

Modified Files:
	abstract.c 
Log Message:

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



Index: abstract.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/abstract.c,v
retrieving revision 2.49
retrieving revision 2.50
diff -C2 -r2.49 -r2.50
*** abstract.c	2000/08/31 05:15:44	2.49
--- abstract.c	2000/08/31 07:02:19	2.50
***************
*** 814,819 ****
  			return x;
  	}
! 	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 &&
--- 814,819 ----
  			return x;
  	}
! 	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 &&