Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 99fb7c7

Browse files
committed
Remove unused variable from complex_from_string() code.
1 parent bd341fa commit 99fb7c7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/bltinmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ complex_from_string(v)
399399
PyObject *v;
400400
{
401401
extern double strtod Py_PROTO((const char *, char **));
402-
char a, *s, *start, *end;
402+
char *s, *start, *end;
403403
double x=0.0, y=0.0, z;
404404
int got_re=0, got_im=0, done=0;
405405
int digit_or_dot;

0 commit comments

Comments
 (0)