[Python-checkins] python/dist/src/Python newcompile.c,1.1.2.18,1.1.2.19

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Mon, 24 Mar 2003 14:59:08 -0800


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

Modified Files:
      Tag: ast-branch
	newcompile.c 
Log Message:
Remove some debugging prints.


Index: newcompile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/newcompile.c,v
retrieving revision 1.1.2.18
retrieving revision 1.1.2.19
diff -C2 -d -r1.1.2.18 -r1.1.2.19
*** newcompile.c	24 Mar 2003 22:57:46 -0000	1.1.2.18
--- newcompile.c	24 Mar 2003 22:59:04 -0000	1.1.2.19
***************
*** 987,992 ****
  	optype = OP_NAME;
  	scope = PyST_GetScope(c->u->u_ste, name);
- 	fprintf(stderr, "nameop name=%s scope=%d\n",
- 		PyString_AS_STRING(name), scope);
  	switch (scope) {
  	case FREE:
--- 987,990 ----
***************
*** 1080,1085 ****
  	else
  		jumpi = JUMP_IF_TRUE;
- 	fprintf(stderr, "op = %d jump = %d\n",
- 		e->v.BoolOp.op, jumpi);
  	end = compiler_new_block(c);
  	if (end < 0)
--- 1078,1081 ----