summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-04-07 16:05:47 (GMT)
committerGuido van Rossum <guido@python.org>1999-04-07 16:05:47 (GMT)
commit99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50 (patch)
tree1e8c524664c2d60283b755f182f983049916d914 /Python
parentbd341fa82a267dae42d1e969740f80ed89870dc7 (diff)
downloadcpython-99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50.zip
cpython-99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50.tar.gz
cpython-99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50.tar.bz2
Remove unused variable from complex_from_string() code.
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
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;