Remove unused variable from complex_from_string() code.

This commit is contained in:
Guido van Rossum 1999-04-07 16:05:47 +00:00
parent bd341fa82a
commit 99fb7c70f4

View file

@ -399,7 +399,7 @@ complex_from_string(v)
PyObject *v; PyObject *v;
{ {
extern double strtod Py_PROTO((const char *, char **)); 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; double x=0.0, y=0.0, z;
int got_re=0, got_im=0, done=0; int got_re=0, got_im=0, done=0;
int digit_or_dot; int digit_or_dot;