]> granicus.if.org Git - python/commitdiff
Remove setting i since it isn't used. Found in unrelated bug 690012.
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 28 Feb 2003 03:16:07 +0000 (03:16 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 28 Feb 2003 03:16:07 +0000 (03:16 +0000)
Parser/pgen.c

index f3fdb46d1e13cd94f28c6d664be87d66bd7503c8..e90155de56197a9f2fa4c75837f0a91f1ec53456 100644 (file)
@@ -283,10 +283,7 @@ compile_item(labellist *ll, nfa *nf, node *n, int *pa, int *pb)
 static void
 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;
        if (n->n_type == LPAR) {