[Python-checkins] python/dist/src/Parser pgen.c,2.22,2.23
nnorwitz@users.sourceforge.net
nnorwitz@users.sourceforge.net
2003年2月27日 19:16:09 -0800
Update of /cvsroot/python/python/dist/src/Parser
In directory sc8-pr-cvs1:/tmp/cvs-serv31746/Parser
Modified Files:
pgen.c
Log Message:
Remove setting i since it isn't used. Found in unrelated bug 690012.
Index: pgen.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Parser/pgen.c,v
retrieving revision 2.22
retrieving revision 2.23
diff -C2 -d -r2.22 -r2.23
*** pgen.c 31 May 2002 13:11:40 -0000 2.22
--- pgen.c 28 Feb 2003 03:16:07 -0000 2.23
***************
*** 284,291 ****
compile_atom(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
{
- int i;
-
REQ(n, ATOM);
- i = n->n_nchildren;
REQN(i, 1);
n = n->n_child;
--- 284,288 ----