[Python-checkins] python/dist/src/Python newcompile.c, 1.1.2.83, 1.1.2.84

nnorwitz at users.sourceforge.net nnorwitz at users.sourceforge.net
Sun Mar 21 15:48:07 EST 2004


Update of /cvsroot/python/python/dist/src/Python
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21045/Python

Modified Files:
      Tag: ast-branch
	newcompile.c 
Log Message:
always print error message

Index: newcompile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/newcompile.c,v
retrieving revision 1.1.2.83
retrieving revision 1.1.2.84
diff -C2 -d -r1.1.2.83 -r1.1.2.84
*** newcompile.c	21 Mar 2004 19:43:23 -0000	1.1.2.83
--- newcompile.c	21 Mar 2004 20:48:05 -0000	1.1.2.84
***************
*** 913,917 ****
  			arg = compiler_lookup_arg(c->u->u_freevars, name);
  		if (arg == -1) {
! 			fprintf(stderr, "lookup %s in %s %d %d\n"
  				"freevars of %s: %s\n",
  				PyObject_REPR(name), 
--- 913,917 ----
  			arg = compiler_lookup_arg(c->u->u_freevars, name);
  		if (arg == -1) {
! 			printf("lookup %s in %s %d %d\n"
  				"freevars of %s: %s\n",
  				PyObject_REPR(name), 




More information about the Python-checkins mailing list