| Commit message (Expand) | Author | Age | Files | Lines |
* | Style/consistency/nano-optimization nit: replace occurrences of | Mark Dickinson | 2009-09-28 | 1 | -6/+6 |
|
|
* | Silence MSVC compiler warnings. | Mark Dickinson | 2009-09-21 | 1 | -2/+3 |
|
|
* | Issue #6713: Improve performance of str(n) and repr(n) for integers n | Mark Dickinson | 2009-09-16 | 1 | -0/+119 |
|
|
* | Fix potential signed-overflow bug in _PyLong_Format; also fix | Mark Dickinson | 2009-09-13 | 1 | -9/+11 |
|
|
* | Remove redundant assignment | Mark Dickinson | 2009-09-06 | 1 | -1/+0 |
|
|
* | Remove unnecessary use of context for long getters. | Mark Dickinson | 2009-05-02 | 1 | -10/+15 |
|
|
* | Issue #3166: Make long -> float (and int -> float) conversions | Mark Dickinson | 2009-04-20 | 1 | -15/+152 |
|
|
* | sys.long_info attributes should be ints, not longs | Mark Dickinson | 2009-04-02 | 1 | -2/+4 |
|
|
* | Issue #5512: speed up the long division algorithm for Python longs. | Mark Dickinson | 2009-03-23 | 1 | -94/+152 |
|
|
* | Issue #4258: Use 30-bit digits for Python longs, on 64-bit platforms. | Mark Dickinson | 2009-03-20 | 1 | -0/+49 |
|
|
* | Replace long with twodigits, to avoid depending | Mark Dickinson | 2009-02-25 | 1 | -1/+1 |
|
|
* | A few more minor fixes in longobject.c | Mark Dickinson | 2009-02-15 | 1 | -5/+4 |
|
|
* | Issue #5260: Various portability and standards compliance fixes, optimizations | Mark Dickinson | 2009-02-15 | 1 | -46/+35 |
|
|
* | Issue #5175: PyLong_AsUnsignedLongLong now raises OverflowError for | Mark Dickinson | 2009-02-10 | 1 | -1/+1 |
|
|
* | Fix comment. | Mark Dickinson | 2009-01-26 | 1 | -3/+3 |
|
|
* | Fix undefined behaviour (left shift of negative value) in long_hash. Also, | Mark Dickinson | 2009-01-26 | 1 | -9/+10 |
|
|
* | No need for carry to be type twodigits in _PyLong_AsByteArray; digit is large... | Mark Dickinson | 2009-01-25 | 1 | -1/+1 |
|
|
* | Issue #4393: fix 3 classes of potential portability problems in longobject.c: | Mark Dickinson | 2009-01-24 | 1 | -23/+20 |
|
|
* | Issue #3439: add bit_length method to int and long. | Mark Dickinson | 2008-12-17 | 1 | -0/+71 |
|
|
* | Issue #1481296: (again!) Make conversion of a float NaN to an int or | Mark Dickinson | 2008-08-04 | 1 | -2/+4 |
|
|
* | Security patches from Apple: prevent int overflow when allocating memory | Neal Norwitz | 2008-07-31 | 1 | -0/+2 |
|
|
* | Added additional __sizeof__ implementations and addressed comments made in | Robert Schuppenies | 2008-07-10 | 1 | -2/+2 |
|
|
* | Revert 64424, 64438, and 64439. | Raymond Hettinger | 2008-06-24 | 1 | -7/+0 |
|
|
* | Make bin() implementation parallel oct() and hex() so that int/long subclasse... | Raymond Hettinger | 2008-06-20 | 1 | -0/+7 |
|
|
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -16/+16 |
|
|
* | Some style nits. Also clarify in the docstrings what __sizeof__ does. | Georg Brandl | 2008-06-01 | 1 | -1/+1 |
|
|
* | Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes. | Robert Schuppenies | 2008-06-01 | 1 | -0/+13 |
|
|
* | Refactor and clean up str.format() code (and helpers) in advance of optimizat... | Eric Smith | 2008-05-30 | 1 | -16/+11 |
|
|
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -17/+17 |
|
|
* | I finally got the time to update and merge Mark's and my trunk-math branch. T... | Christian Heimes | 2008-04-18 | 1 | -0/+12 |
|
|
* | Fix for possible signed overflow: the behaviour of -LONG_MIN is | Mark Dickinson | 2008-04-15 | 1 | -6/+19 |
|
|
* | Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings. | Neal Norwitz | 2008-03-28 | 1 | -5/+5 |
|
|
* | Fix warnings about using char as an array subscript. This is not portable | Neal Norwitz | 2008-03-27 | 1 | -5/+5 |
|
|
* | Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. | Jeffrey Yasskin | 2008-03-18 | 1 | -1/+1 |
|
|
* | Finished backporting PEP 3127, Integer Literal Support and Syntax. | Eric Smith | 2008-03-17 | 1 | -1/+14 |
|
|
* | Backport of PEP 3101, Advanced String Formatting, from py3k. | Eric Smith | 2008-02-17 | 1 | -0/+36 |
|
|
* | Added PyNumber_ToBase and supporting routines _PyInt_Format and | Eric Smith | 2008-02-10 | 1 | -14/+23 |
|
|
* | Backport of several functions from Python 3.0 to 2.6 including PyUnicode_From... | Christian Heimes | 2008-01-25 | 1 | -165/+165 |
|
|
* | Silence Coverity false alerts with CIDs #172, #183, #184 | Christian Heimes | 2008-01-18 | 1 | -0/+1 |
|
|
* | Continue rolling back pep-3141 changes that changed behavior from 2.5. This | Jeffrey Yasskin | 2008-01-05 | 1 | -34/+0 |
|
|
* | Make math.{floor,ceil}({int,long}) return float again for backwards | Jeffrey Yasskin | 2008-01-04 | 1 | -2/+2 |
|
|
* | Bug #1481296: Fixed long(float('nan'))!=0L. | Christian Heimes | 2008-01-04 | 1 | -0/+3 |
|
|
* | Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just | Jeffrey Yasskin | 2008-01-03 | 1 | -15/+67 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC... | Christian Heimes | 2007-12-19 | 1 | -89/+89 |
|
|
* | Issue #1772851. Alters long.__hash__ from being *almost* completely | Facundo Batista | 2007-09-19 | 1 | -0/+8 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -89/+89 |
|
|
* | Fix problems in x64 build that were discovered by the testsuite: | Kristján Valur Jónsson | 2007-05-03 | 1 | -1/+1 |
|
|
* | Add some missing NULL checks which trigger crashes on low-memory conditions. | Georg Brandl | 2007-04-11 | 1 | -0/+8 |
|
|
* | Patch #1638879: don't accept strings with embedded NUL bytes in long(). | Georg Brandl | 2007-03-06 | 1 | -1/+18 |
|
|
* | Variation of patch # 1624059 to speed up checking if an object is a subclass | Neal Norwitz | 2007-02-25 | 1 | -1/+1 |
|
|