From 2ad79e82c8db37477582d69eeaf46469da322a89 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Sat, 19 Jul 2008 00:33:23 +0000 Subject: Merged revisions 65125 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r65125 | eric.smith | 2008-07-18 20:24:05 -0400 (Fri, 18 Jul 2008) | 1 line Fix issue 3411: default float format spec fails on negative numbers. ........ --- Python/pystrtod.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Python/pystrtod.c') diff --git a/Python/pystrtod.c b/Python/pystrtod.c index 5a96b58e15..b3738528db 100644 --- a/Python/pystrtod.c +++ b/Python/pystrtod.c @@ -302,6 +302,10 @@ ensure_decimal_point(char* buffer, size_t buf_size) /* search for the first non-digit character */ char *p = buffer; + if (*p == '-' || *p == '+') + /* Skip leading sign, if present. I think this could only + ever be '-', but it can't hurt to check for both. */ + ++p; while (*p && isdigit(Py_CHARMASK(*p))) ++p; -- cgit v1.2.1