mirror of
https://github.com/python/cpython.git
synced 2025-09-13 12:17:24 +00:00
Fix issue 3411: default float format spec fails on negative numbers.
This commit is contained in:
parent
1e8fba729e
commit
f032a00271
2 changed files with 10 additions and 0 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue