[Python-checkins] python/dist/src/Python symtable.c,2.10.8.14,2.10.8.15

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Tue, 01 Apr 2003 14:13:35 -0800


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

Modified Files:
      Tag: ast-branch
	symtable.c 
Log Message:
initialize ste_tmpname so list comps start at 1 instead of random numbers

Index: symtable.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/symtable.c,v
retrieving revision 2.10.8.14
retrieving revision 2.10.8.15
diff -C2 -d -r2.10.8.14 -r2.10.8.15
*** symtable.c	28 Mar 2003 17:22:24 -0000	2.10.8.14
--- symtable.c	1 Apr 2003 22:13:31 -0000	2.10.8.15
***************
*** 20,23 ****
--- 20,24 ----
  	ste->ste_table = st;
  	ste->ste_id = k;
+ 	ste->ste_tmpname = 0;
  
  	ste->ste_name = name;