summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2003-02-28 03:16:07 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2003-02-28 03:16:07 (GMT)
commit5f16a3178cd234576bc251df1f3040a2a7c418f7 (patch)
tree895a5477adf097a6d990bc43dacbabb3a04daa4c /Parser
parente9c571f96847f985ff4abaf1a3f3f9c27f088d6d (diff)
downloadcpython-5f16a3178cd234576bc251df1f3040a2a7c418f7.zip
cpython-5f16a3178cd234576bc251df1f3040a2a7c418f7.tar.gz
cpython-5f16a3178cd234576bc251df1f3040a2a7c418f7.tar.bz2
Remove setting i since it isn't used. Found in unrelated bug 690012.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/pgen.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Parser/pgen.c b/Parser/pgen.c
index f3fdb46..e90155d 100644
--- a/Parser/pgen.c
+++ b/Parser/pgen.c
@@ -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) {