| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Moved Rational._binary_float_to_ratio() to float.as_integer_ratio() because | Jeffrey Yasskin | 2008-01-27 | 1 | -0/+159 |
|
|
* | Add prototypes to get the mathmodule.c to compile on OSF1 5.1 (Tru64) | Neal Norwitz | 2008-01-25 | 1 | -0/+5 |
|
|
* | Now that I've learnt about structseq objects I felt like converting sys.float... | Christian Heimes | 2008-01-14 | 1 | -29/+78 |
|
|
* | Continue rolling back pep-3141 changes that changed behavior from 2.5. This | Jeffrey Yasskin | 2008-01-05 | 1 | -55/+3 |
|
|
* | Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just | Jeffrey Yasskin | 2008-01-03 | 1 | -26/+82 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -12/+12 |
|
|
* | Applied patch #1635: Float patch for inf and nan on Windows (and other platfo... | Christian Heimes | 2007-12-18 | 1 | -1/+49 |
|
|
* | The new float repr causes too much trouble and pain. I'm disabling the featur... | Christian Heimes | 2007-12-11 | 1 | -1/+12 |
|
|
* | Backport of r59456:59458 from py3k to trunk | Christian Heimes | 2007-12-10 | 1 | -2/+106 |
|
|
* | Feature #1534 | Christian Heimes | 2007-12-01 | 1 | -0/+47 |
|
|
* | Add a bunch of GIL release/acquire points in tp_print implementations and for | Brett Cannon | 2007-09-17 | 1 | -0/+2 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -14/+13 |
|
|
* | Remove dead code. This code couldn't be reached because earlier in | Neal Norwitz | 2007-05-03 | 1 | -12/+1 |
|
|
* | Reverting the patch that tried to fix the issue whereby x**2 raises | Alex Martelli | 2006-08-23 | 1 | -3/+3 |
|
|
* | x**2 should about equal x*x (including for a float x such that the result is | Alex Martelli | 2006-08-23 | 1 | -3/+3 |
|
|
* | Added a new macro, Py_IS_FINITE(X). On windows there is an intrinsic for thi... | Kristján Valur Jónsson | 2006-05-25 | 1 | -5/+2 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 1 | -1/+1 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 1 | -5/+5 |
|
|
* | Remove unnecessary casts in type object initializers. | Georg Brandl | 2006-03-30 | 1 | -12/+12 |
|
|
* | Use %ld and casts to long for refcount printing, in absense of a universally | Thomas Wouters | 2006-03-01 | 1 | -2/+6 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -2/+2 |
|
|
* | Fix icc warnings: remove unused variable | Neal Norwitz | 2006-01-08 | 1 | -2/+1 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
|
|
* | Fix bug | Michael W. Hudson | 2005-12-05 | 1 | -5/+13 |
|
|