Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fixes #18400 (#18402) | Andreas Rumpf | 2021-06-30 | 1 | -0/+6 |
| | |||||
* | remove unused imports from tests | narimiran | 2019-11-06 | 1 | -1/+1 |
| | |||||
* | require errormsg to be specified before file. | Arne Döring | 2018-12-11 | 1 | -2/+1 |
| | |||||
* | Fix for isssue in parseBiggestFloat #7060 (#7061) | cooldome | 2018-01-11 | 1 | -0/+6 |
| | |||||
* | make tests green again; closes #5861 | Andreas Rumpf | 2017-10-10 | 1 | -1/+1 |
| | |||||
* | made test green for Windows | Araq | 2016-09-30 | 1 | -2/+4 |
| | |||||
* | fixes issue 4212 && add test for various valid zero floats. | Parashurama | 2016-05-25 | 1 | -13/+21 |
| | |||||
* | fixes #4212 | Andreas Rumpf | 2016-05-25 | 1 | -1/+1 |
| | |||||
* | Fixed parsing of float literals. | Reimer Behrends | 2014-05-23 | 1 | -0/+42 |
Float literals were not parsed properly when their fractional part exceeded 53 significant bits. This affected in particular math.PI and math.E. Rather than reinventing the wheel, this patch reuses C's strtod() implementation, which already does the heavy lifting with respect to correctness, though some caution is necessary to keep float parsing locale-independent. |