[Python-checkins] python/nondist/sandbox/setobj setobject.c, 1.18, 1.19

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sat Nov 15 16:39:31 EST 2003


Update of /cvsroot/python/python/nondist/sandbox/setobj
In directory sc8-pr-cvs1:/tmp/cvs-serv12492

Modified Files:
	setobject.c 
Log Message:
Remove some debugging code.

Index: setobject.c
===================================================================
RCS file: /cvsroot/python/python/nondist/sandbox/setobj/setobject.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** setobject.c	15 Nov 2003 20:41:37 -0000	1.18
--- setobject.c	15 Nov 2003 21:39:29 -0000	1.19
***************
*** 184,188 ****
  	PyObject *item, *data, *it;
  
- 	printf("AAA");
  	it = PyObject_GetIter(other);
  	if (it == NULL)
--- 184,187 ----
***************
*** 212,216 ****
  {
  	if (!IS_SET(so) || !IS_SET(other)) {
- 		printf("YYY");
  		Py_INCREF(Py_NotImplemented);
  		return Py_NotImplemented;
--- 211,214 ----





More information about the Python-checkins mailing list