[Python-checkins] python/dist/src/Python bltinmodule.c, 2.292.10.2, 2.292.10.3

aleax at users.sourceforge.net aleax at users.sourceforge.net
Sat Oct 25 19:22:57 EDT 2003


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv12391/Python

Modified Files:
      Tag: release23-maint
	bltinmodule.c 
Log Message:
regressing the performance bugfix -- Guido wants the performance bug left
alone, because there can be no guarantee re the semantics of += vs + .


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.292.10.2
retrieving revision 2.292.10.3
diff -C2 -d -r2.292.10.2 -r2.292.10.3
*** bltinmodule.c	25 Oct 2003 12:47:09 -0000	2.292.10.2
--- bltinmodule.c	25 Oct 2003 23:22:55 -0000	2.292.10.3
***************
*** 1841,1845 ****
  			break;
  		}
! 		temp = PyNumber_InPlaceAdd(result, item);
  		Py_DECREF(result);
  		Py_DECREF(item);
--- 1841,1845 ----
  			break;
  		}
! 		temp = PyNumber_Add(result, item);
  		Py_DECREF(result);
  		Py_DECREF(item);





More information about the Python-checkins mailing list