summaryrefslogtreecommitdiff
path: root/Objects/floatobject.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-1/+1
* Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)Miss Islington (bot)2018-03-261-3/+2
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-131-1/+1
* Issue #22463: Backport compiler warning fixes and workaroundsMartin Panter2016-06-211-1/+1
* Corrections for a/an in code comments and documentationMartin Panter2016-05-081-1/+1
* Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-251-1/+1
* Issue #25678: Copy buffer objects to null-terminated strings.Serhiy Storchaka2015-11-201-1/+10
* fix potential refleak in PyFloat_AsDouble (closes #23590)Benjamin Peterson2015-03-061-0/+1
* #19069: use imperative mood in float object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-061-9/+9
* Issue #9742: Sneaky fix for build failure on Solaris 9.Mark Dickinson2012-11-171-0/+9
* Issue #13889: Add missing _Py_SET_53BIT_PRECISION_* calls around uses of dtoa...Mark Dickinson2012-01-271-0/+5
* Issue #11144: Fix corner cases where float-to-int conversion unnecessarily re...Mark Dickinson2011-03-261-7/+10
* Merged revisions 87032 via svnmerge fromMark Dickinson2010-12-041-4/+14
* add spaceBenjamin Peterson2010-07-021-1/+1
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-2079/+2079
* Add back in a line that was unneeded which advanced a pointer, but commentedBrett Cannon2010-05-061-0/+1
* Remove an unneeded variable increment.Brett Cannon2010-05-051-1/+0
* #7482: clarify error message in case of division by zero of float and complex...Ezio Melotti2010-02-221-2/+2
* Issue #7534: Fix handling of nans, infinities, and negative zero in **Mark Dickinson2009-12-301-23/+74
* Include ieeefp.h (when available) in pyport.h instead of individually inMark Dickinson2009-11-281-4/+0
* Issue #7117, continued: Change round implementation to use the correctly-rou...Mark Dickinson2009-11-181-0/+196
* Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod inMark Dickinson2009-10-261-35/+24
* Start to remove _PyOS_double_to_string, as mentioned in issue 7117.Eric Smith2009-10-261-22/+36
* Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, an...Eric Smith2009-10-241-11/+0
* Removed usage of unsafe PyFloat_AsString.Eric Smith2009-10-161-7/+13
* add underscoresBenjamin Peterson2009-06-161-2/+2
* Issue #5981: Fix some float.fromhex bugs related to inf and nan handling.Mark Dickinson2009-05-111-16/+36
* Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio...Eric Smith2009-05-051-5/+10
* Eliminate some locale-dependent calls to isspace and tolower.Mark Dickinson2009-05-031-6/+6
* Remove format_float and use _PyOS_double_to_string instead.Mark Dickinson2009-04-291-82/+13
* Backport r71967 changes from py3k to trunk.Mark Dickinson2009-04-261-60/+21
* Issue #5835, deprecate PyOS_ascii_formatd.Eric Smith2009-04-251-3/+2
* call __float__ on str subclasses #5759Benjamin Peterson2009-04-151-1/+3
* Use correct capitalization of NaNAndrew M. Kuchling2008-10-041-2/+2
* should use macro'ed symbols not directAndrew MacIntyre2008-09-221-3/+3
* #3777: long(4.2) returned an int, and broke backward compatibility.Amaury Forgeot d'Arc2008-09-091-1/+8
* issue 3633: Solaris allows fullwidth Unicode digits in isxdigit, soMark Dickinson2008-08-211-5/+4
* Issue #3008: add instance method float.hex and class method float.fromhexMark Dickinson2008-07-151-0/+407
* - Issue #2862: Make int and float freelist management consistent with otherGregory P. Smith2008-07-061-26/+17
* Issue 3188: accept float('infinity') as well as float('inf'). ThisMark Dickinson2008-07-051-0/+3
* Revert 64424, 64438, and 64439.Raymond Hettinger2008-06-241-65/+7
* Fix build on FreeBSD gcc.Hye-Shik Chang2008-06-211-6/+6
* Issue 3008: hex/oct/bin can show floats exactly.Raymond Hettinger2008-06-211-2/+60
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-11/+11
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-18/+11
* Renamed PyString to PyBytesChristian Heimes2008-05-261-12/+12
* Issue #2801: fix bug in float.is_integer where ValueErrorMark Dickinson2008-05-091-0/+1
* I finally got the time to update and merge Mark's and my trunk-math branch. T...Christian Heimes2008-04-181-125/+81
* Fix compiler warning about finite() missing on Solaris.Neal Norwitz2008-03-281-0/+4
* Pluralss only need one s, not 2 (intss -> ints)Neal Norwitz2008-03-271-1/+1