Commit 99fb7c70 authored by Guido van Rossum's avatar Guido van Rossum

Remove unused variable from complex_from_string() code.

parent bd341fa8
...@@ -399,7 +399,7 @@ complex_from_string(v) ...@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment