diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-01-25 16:11:19 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-01-25 16:11:19 (GMT) |
commit | 1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4 (patch) | |
tree | ae73adcdefac3f1182bf0c70c9f01523d7b2ac88 /Python | |
parent | 9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 (diff) | |
download | cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.zip cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.gz cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.bz2 |
Removed unused var
Diffstat (limited to 'Python')
-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 2f6c46b..5312870 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)); |