diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-01-25 16:11:19 +0000 |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-01-25 16:11:19 +0000 |
commit | 1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4 (patch) | |
tree | ae73adcdefac3f1182bf0c70c9f01523d7b2ac88 /Python/compile.c | |
parent | 9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 (diff) | |
download | cpython-git-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.gz |
Removed unused var
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index 2f6c46b9a5..531287020d 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -970,7 +970,6 @@ com_factor(c, n) struct compiling *c; node *n; { - int i; REQ(n, factor); if (TYPE(CHILD(n, 0)) == PLUS) { com_factor(c, CHILD(n, 1)); |