Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-108303: Move all math files to `Lib/test/mathdata/` (#109512) | Nikita Sobolev | 2023-09-21 | 1 | -355/+0 |
| | |||||
* | Add testcases from bug report #9980. | Mark Dickinson | 2010-09-29 | 1 | -0/+5 |
| | |||||
* | Issue #9337: Make float.__str__ identical to float.__repr__. | Mark Dickinson | 2010-08-04 | 1 | -35/+29 |
| | | | | (And similarly for complex numbers.) | ||||
* | Issue #5859: Remove '%f' to '%g' formatting switch for large floats. | Mark Dickinson | 2009-05-01 | 1 | -1/+1 |
| | |||||
* | Issue #5864: Fix problem with empty code formatting for floats, | Mark Dickinson | 2009-04-29 | 1 | -0/+2 |
| | | | | where a bogus trailing zero could be added. | ||||
* | Issue #1580: use short float repr where possible. | Mark Dickinson | 2009-04-16 | 1 | -0/+354 |
- incorporate and adapt David Gay's dtoa and strtod into the Python core - on platforms where we can use Gay's code (almost all!), repr(float) is based on the shortest sequence of decimal digits that rounds correctly. - add sys.float_repr_style attribute to indicate whether we're using Gay's code or not - add autoconf magic to detect and enable SSE2 instructions on x86/gcc - slight change to repr and str: repr switches to exponential notation at 1e16 instead of 1e17, str switches at 1e11 instead of 1e12 |