| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #11144: Fix corner cases where float-to-int conversion unnecessarily re... | Mark Dickinson | 2011-03-26 | 1 | -7/+10 |
|
|
* | Merged revisions 87032 via svnmerge from | Mark Dickinson | 2010-12-04 | 1 | -4/+14 |
|
|
* | add space | Benjamin Peterson | 2010-07-02 | 1 | -1/+1 |
|
|
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -2079/+2079 |
|
|
* | Add back in a line that was unneeded which advanced a pointer, but commented | Brett Cannon | 2010-05-06 | 1 | -0/+1 |
|
|
* | Remove an unneeded variable increment. | Brett Cannon | 2010-05-05 | 1 | -1/+0 |
|
|
* | #7482: clarify error message in case of division by zero of float and complex... | Ezio Melotti | 2010-02-22 | 1 | -2/+2 |
|
|
* | Issue #7534: Fix handling of nans, infinities, and negative zero in ** | Mark Dickinson | 2009-12-30 | 1 | -23/+74 |
|
|
* | Include ieeefp.h (when available) in pyport.h instead of individually in | Mark Dickinson | 2009-11-28 | 1 | -4/+0 |
|
|
* | Issue #7117, continued: Change round implementation to use the correctly-rou... | Mark Dickinson | 2009-11-18 | 1 | -0/+196 |
|
|
* | Issue #7117: Use PyOS_string_to_double instead of PyOS_ascii_strtod in | Mark Dickinson | 2009-10-26 | 1 | -35/+24 |
|
|
* | Start to remove _PyOS_double_to_string, as mentioned in issue 7117. | Eric Smith | 2009-10-26 | 1 | -22/+36 |
|
|
* | Removed unused function PyFloat_AsStringEx. It is unused in floatobject.c, an... | Eric Smith | 2009-10-24 | 1 | -11/+0 |
|
|
* | Removed usage of unsafe PyFloat_AsString. | Eric Smith | 2009-10-16 | 1 | -7/+13 |
|
|
* | add underscores | Benjamin Peterson | 2009-06-16 | 1 | -2/+2 |
|
|
* | Issue #5981: Fix some float.fromhex bugs related to inf and nan handling. | Mark Dickinson | 2009-05-11 | 1 | -16/+36 |
|
|
* | Issue #5920: Changed format.__float__ and complex.__float__ to use a precisio... | Eric Smith | 2009-05-05 | 1 | -5/+10 |
|
|
* | Eliminate some locale-dependent calls to isspace and tolower. | Mark Dickinson | 2009-05-03 | 1 | -6/+6 |
|
|
* | Remove format_float and use _PyOS_double_to_string instead. | Mark Dickinson | 2009-04-29 | 1 | -82/+13 |
|
|
* | Backport r71967 changes from py3k to trunk. | Mark Dickinson | 2009-04-26 | 1 | -60/+21 |
|
|
* | Issue #5835, deprecate PyOS_ascii_formatd. | Eric Smith | 2009-04-25 | 1 | -3/+2 |
|
|
* | call __float__ on str subclasses #5759 | Benjamin Peterson | 2009-04-15 | 1 | -1/+3 |
|
|
* | Use correct capitalization of NaN | Andrew M. Kuchling | 2008-10-04 | 1 | -2/+2 |
|
|
* | should use macro'ed symbols not direct | Andrew MacIntyre | 2008-09-22 | 1 | -3/+3 |
|
|
* | #3777: long(4.2) returned an int, and broke backward compatibility. | Amaury Forgeot d'Arc | 2008-09-09 | 1 | -1/+8 |
|
|
* | issue 3633: Solaris allows fullwidth Unicode digits in isxdigit, so | Mark Dickinson | 2008-08-21 | 1 | -5/+4 |
|
|
* | Issue #3008: add instance method float.hex and class method float.fromhex | Mark Dickinson | 2008-07-15 | 1 | -0/+407 |
|
|
* | - Issue #2862: Make int and float freelist management consistent with other | Gregory P. Smith | 2008-07-06 | 1 | -26/+17 |
|
|
* | Issue 3188: accept float('infinity') as well as float('inf'). This | Mark Dickinson | 2008-07-05 | 1 | -0/+3 |
|
|
* | Revert 64424, 64438, and 64439. | Raymond Hettinger | 2008-06-24 | 1 | -65/+7 |
|
|
* | Fix build on FreeBSD gcc. | Hye-Shik Chang | 2008-06-21 | 1 | -6/+6 |
|
|
* | Issue 3008: hex/oct/bin can show floats exactly. | Raymond Hettinger | 2008-06-21 | 1 | -2/+60 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -11/+11 |
|
|
* | Refactor and clean up str.format() code (and helpers) in advance of optimizat... | Eric Smith | 2008-05-30 | 1 | -18/+11 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -12/+12 |
|
|
* | Issue #2801: fix bug in float.is_integer where ValueError | Mark Dickinson | 2008-05-09 | 1 | -0/+1 |
|
|
* | I finally got the time to update and merge Mark's and my trunk-math branch. T... | Christian Heimes | 2008-04-18 | 1 | -125/+81 |
|
|
* | Fix compiler warning about finite() missing on Solaris. | Neal Norwitz | 2008-03-28 | 1 | -0/+4 |
|
|
* | Pluralss only need one s, not 2 (intss -> ints) | Neal Norwitz | 2008-03-27 | 1 | -1/+1 |
|
|
* | Issue 705836: Fix struct.pack(">f", 1e40) to behave consistently | Mark Dickinson | 2008-03-14 | 1 | -8/+8 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+43 |
|
|
* | Patch #1953 | Christian Heimes | 2008-02-04 | 1 | -7/+23 |
|
|
* | Simpler solution to handling non-IEEE 754 environments. | Raymond Hettinger | 2008-02-02 | 1 | -13/+3 |
|
|
* | Add protection from weirdness while scaling the mantissa to an integer. | Raymond Hettinger | 2008-02-01 | 1 | -5/+10 |
|
|
* | Fix int/long typecase. Add check for non-binary floating point. | Raymond Hettinger | 2008-02-01 | 1 | -2/+9 |
|
|
* | labs() takes a long for an input. | Raymond Hettinger | 2008-02-01 | 1 | -1/+1 |
|
|
* | Integer ratio should return ints instead of longs whereever possible. | Raymond Hettinger | 2008-02-01 | 1 | -2/+8 |
|
|
* | Issue #1996: float.as_integer_ratio() should return fraction in lowest terms. | Raymond Hettinger | 2008-02-01 | 1 | -85/+18 |
|
|
* | The previous change was causing a segfault after multiple calls to Py_Initial... | Christian Heimes | 2008-01-30 | 1 | -9/+5 |
|
|
* | Fixed some references leaks in sys. | Christian Heimes | 2008-01-30 | 1 | -1/+0 |
|
|