]> granicus.if.org Git - python/commitdiff
Removed unused var
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 25 Jan 1996 16:11:19 +0000 (16:11 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 25 Jan 1996 16:11:19 +0000 (16:11 +0000)
Objects/complexobject.c
Python/compile.c

index 20eab1e1f6a253bd917b11ac355edcf494508e00..391b80ef3eb758451407903a09a15d8975b25687 100644 (file)
@@ -485,7 +485,6 @@ complex_new(self, args)
        object *self;
        object *args;
 {
-       int n;
        complex cval;
 
        cval.imag = 0.;
index 2f6c46b9a5121388cc3bd652519055f16d3d62cd..531287020dcd431d9db5af1f65da4bc0c87e2f1b 100644 (file)
@@ -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));