diff options
-rw-r--r-- | Objects/complexobject.c | 1 | ||||
-rw-r--r-- | Python/compile.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 20eab1e..391b80e 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -485,7 +485,6 @@ complex_new(self, args) object *self; object *args; { - int n; complex cval; cval.imag = 0.; 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)); |