summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-01-25 16:11:19 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-01-25 16:11:19 (GMT)
commit1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4 (patch)
treeae73adcdefac3f1182bf0c70c9f01523d7b2ac88 /Python
parent9fbcc6a6c2ed8916b7c3eb0e5c60f34ff52f85e2 (diff)
downloadcpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.zip
cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.gz
cpython-1e7b2aa5d60fab438f0395633804f3ee5c7c9ca4.tar.bz2
Removed unused var
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c1
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));