mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
Remove unused variable from complex_from_string() code.
This commit is contained in:
parent
bd341fa82a
commit
99fb7c70f4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue