Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge test_strtod and test_float string-to-float conversion tests. | Mark Dickinson | 2010-06-20 | 1 | -0/+6 |
| | |||||
* | Reduce number of random tests in test_strtod, to avoid hogging buildbot time. | Mark Dickinson | 2010-02-21 | 1 | -36/+30 |
| | |||||
* | Skip test_strtod entirely when correctly-rounded string->float isn't implemented | Mark Dickinson | 2010-02-07 | 1 | -2/+4 |
| | |||||
* | Use // for floor division. | Mark Dickinson | 2010-01-21 | 1 | -2/+2 |
| | |||||
* | Add two more test_strtod test values. | Mark Dickinson | 2010-01-21 | 1 | -0/+36 |
| | |||||
* | Additional testcases for strtod. | Mark Dickinson | 2010-01-21 | 1 | -0/+54 |
| | |||||
* | Various dtoa.c cleanups. 1. Despagghetify _Py_dg_strtod parsing code | Mark Dickinson | 2010-01-20 | 1 | -4/+41 |
| | | | | | | and exit points. 2. Simplify bigcomp comparison loop. 3. Don't set ERANGE on _Py_dg_strtod underflow (it was set inconsistently anyway). 4. Remove unused dsign field from BCinfo struct. | ||||
* | Increase number of strtod tests slightly, to make it more likely that a ↵ | Mark Dickinson | 2010-01-17 | 1 | -1/+1 |
| | | | | memory leak is detected. | ||||
* | Add better error reporting for MemoryErrors caused by str->float conversions. | Mark Dickinson | 2010-01-16 | 1 | -0/+2 |
| | |||||
* | Issue #7632: Fix one more case of incorrect rounding for str -> float | Mark Dickinson | 2010-01-16 | 1 | -6/+3 |
| | | | | conversion (see bug 5 in the issue tracker). | ||||
* | Issue #7632: Fix a serious wrong output bug for string -> float conversion. | Mark Dickinson | 2010-01-16 | 1 | -0/+2 |
| | | | | | | Also remove some now unused variables, and add comments clarifying the possible outputs of the parsing section of _Py_dg_strtod. Thanks Eric Smith for reviewing. | ||||
* | Issue #7632: add tests for bugs fixed so far. | Mark Dickinson | 2010-01-14 | 1 | -0/+269 |