Skip to content

Commit

Permalink
Changed.
Browse files Browse the repository at this point in the history
  • Loading branch information
teoliphant committed Aug 14, 2001
1 parent 53b4f5d commit cc0ae75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/io/numpyiomodule.c
Expand Up @@ -532,7 +532,7 @@ static int convert_from_object(PyObject *obj, Py_complex *cnum)
xptr++;
count--;
/* strip leading whitespaces */
while isspace(*xptr) {xptr++; count--;}
while (isspace(*xptr)) {xptr++; count--;}
}
if (xptr[0] == '-') {
rnegflag = -1;
Expand Down

0 comments on commit cc0ae75

Please sign in to comment.