From 99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 7 Apr 1999 16:05:47 +0000 Subject: Remove unused variable from complex_from_string() code. --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index ec87492..0340e3a 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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; -- cgit v0.12