summaryrefslogtreecommitdiff
path: root/Lib/test/test_float.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #11144: Fix corner cases where float-to-int conversion unnecessarily re...Mark Dickinson2011-03-261-0/+42
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
* Merged revisions 87032 via svnmerge fromMark Dickinson2010-12-041-0/+20
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-8/+8
* Merged revisions 86003 via svnmerge fromBrian Curtin2010-10-311-13/+14
* don't require the presence of __getformat__ or __setformat__; use requires_IE...Benjamin Peterson2010-07-021-42/+49
* Merge test_strtod and test_float string-to-float conversion tests.Mark Dickinson2010-06-201-102/+0
* Use a more robust infinity check in _Py_HashDouble.Mark Dickinson2010-04-051-0/+9
* Check that 'd' isn't allowed as an exponent specifier in inputs to the float ...Mark Dickinson2010-02-121-0/+3
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+0
* use assert[Not]In where appropriateEzio Melotti2010-01-231-4/+4
* Issue #7632: Fix a bug in dtoa.c that could lead to incorrectly-rounded resu...Mark Dickinson2010-01-121-0/+102
* Backport some float repr tests that were missed in issue 7117.Mark Dickinson2010-01-081-0/+49
* Issue #7534: Fix handling of nans, infinities, and negative zero in **Mark Dickinson2009-12-301-0/+212
* Issue #4482: Add tests for special float value formatting.Eric Smith2009-12-021-0/+35
* Issue #3382: Make '%F' and float.__format__('F') convert results to upper cas...Eric Smith2009-11-291-2/+12
* round(0, "ermintrude") succeeded instead of producing a TypeError. Fix this.Mark Dickinson2009-11-241-0/+5
* Issue #7117, continued: Change round implementation to use the correctly-rou...Mark Dickinson2009-11-181-1/+139
* Test long inputs to floatMark Dickinson2009-10-271-0/+5
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-261-2/+0
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-17/+17
* Issue #5981: Fix some float.fromhex bugs related to inf and nan handling.Mark Dickinson2009-05-111-0/+31
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-0/+47
* Backport some of the float formatting tests from py3k.Mark Dickinson2009-04-291-0/+19
* Issue #5864: format(1234.5, '.4') gives misleading resultMark Dickinson2009-04-291-0/+5
* call __float__ on str subclasses #5759Benjamin Peterson2009-04-151-0/+12
* fix missing moduleBenjamin Peterson2008-09-061-1/+1
* #3796: A test class was not run in test_float.Amaury Forgeot d'Arc2008-09-061-1/+3
* Fix float.fromhex test to give additional information on failure. ThisMark Dickinson2008-08-211-1/+7
* Fix float.from_hex tests. It appears that Linux/ia64 doesn't likeMark Dickinson2008-07-151-4/+4
* Issue #3008: add instance method float.hex and class method float.fromhexMark Dickinson2008-07-151-1/+386
* Issue 3188: accept float('infinity') as well as float('inf'). ThisMark Dickinson2008-07-051-1/+17
* Moved testing of builtin types out of test_builtin and into type specific mod...Benjamin Peterson2008-05-031-0/+111
* I finally got the time to update and merge Mark's and my trunk-math branch. T...Christian Heimes2008-04-181-5/+16
* Patch #1725 by Mark Dickinson, fixes incorrect conversion of -1e1000Guido van Rossum2008-01-051-0/+7
* Applied patch #1635: Float patch for inf and nan on Windows (and other platfo...Christian Heimes2007-12-181-1/+72
* The new float repr causes too much trouble and pain. I'm disabling the featur...Christian Heimes2007-12-111-1/+2
* Backport of r59456:59458 from py3k to trunkChristian Heimes2007-12-101-1/+16
* Fix compile.c so that it records 0.0 and -0.0 as separate constants in a codeAlex Martelli2007-08-221-0/+15
* Reverting the patch that tried to fix the issue whereby x**2 raisesAlex Martelli2006-08-231-14/+1
* x**2 should about equal x*x (including for a float x such that the result isAlex Martelli2006-08-231-1/+14
* Whitespace normalization.Tim Peters2005-06-031-1/+1
* This is my patch:Michael W. Hudson2005-05-271-0/+110