diff options
| author | Guido van Rossum <guido@python.org> | 1999-04-07 16:05:47 +0000 | 
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1999-04-07 16:05:47 +0000 | 
| commit | 99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50 (patch) | |
| tree | 1e8c524664c2d60283b755f182f983049916d914 /Python | |
| parent | bd341fa82a267dae42d1e969740f80ed89870dc7 (diff) | |
| download | cpython-git-99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50.tar.gz | |
Remove unused variable from complex_from_string() code.
Diffstat (limited to 'Python')
| -rw-r--r-- | Python/bltinmodule.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index ec87492f34..0340e3a2b5 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; | 
