diff options
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 4b7eee0..18f158a 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -1685,8 +1685,6 @@ PyLong_FromString(char *str, char **pend, int base) ++str; sign = -1; } - while (*str != '\0' && isspace(Py_CHARMASK(*str))) - str++; if (base == 0) { if (str[0] != '0') base = 10; |