[Python-checkins] CVS: python/dist/src/Python compile.c,2.199,2.200

Tim Peters tim_one@users.sourceforge.net
Wed, 09 May 2001 11:53:54 -0700


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

Modified Files:
	compile.c 
Log Message:
SF patch #416249, from Mark Favas:  2.1c1 compile: unused vrbl cleanup


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.199
retrieving revision 2.200
diff -C2 -r2.199 -r2.200
*** compile.c	2001/05/08 04:12:34	2.199
--- compile.c	2001/05/09 18:53:51	2.200
***************
*** 3540,3544 ****
  		node *ch = CHILD(n, i);
  		node *fp;
- 		char *name;
  		if (TYPE(ch) == STAR || TYPE(ch) == DOUBLESTAR)
  			break;
--- 3540,3543 ----
***************
*** 3546,3550 ****
  		fp = CHILD(ch, 0);
  		if (TYPE(fp) != NAME) {
- 			name = nbuf;
  			sprintf(nbuf, ".%d", i);
  			complex = 1;
--- 3545,3548 ----