]> granicus.if.org Git - python/commitdiff
Remove unused variable from complex_from_string() code.
authorGuido van Rossum <guido@python.org>
Wed, 7 Apr 1999 16:05:47 +0000 (16:05 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 7 Apr 1999 16:05:47 +0000 (16:05 +0000)
Python/bltinmodule.c

index ec87492f34e2ab0649566ed31a9d6409deb2636d..0340e3a2b5588eec2a81621b35744a3b716b2141 100644 (file)
@@ -399,7 +399,7 @@ complex_from_string(v)
        PyObject *v;
 {
        extern double strtod Py_PROTO((const char *, char **));
-       char a, *s, *start, *end;
+       char *s, *start, *end;
        double x=0.0, y=0.0, z;
        int got_re=0, got_im=0, done=0;
        int digit_or_dot;