summaryrefslogtreecommitdiffstats
path: root/Lib/test/floating_points.txt
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7632: Fix a problem with _Py_dg_strtod that could lead toMark Dickinson2010-01-121-0/+7
| | | | | crashes in debug builds, for certain long numeric strings corresponding to subnormal values.
* Backport of r59456:59458 from py3k to trunkChristian Heimes2007-12-101-0/+1021
Issue #1580: New free format floating point representation based on "Floating-Point Printer Sample Code", by Robert G. Burger. For example repr(11./5) now returns '2.2' instead of '2.2000000000000002'. Thanks to noam for the patch! I had to modify doubledigits.c slightly to support X64 and IA64 machines on Windows. I also added the new file to the three project files.