| Commit message (Expand) | Author | Age | Files | Lines |
* | PyLong_BASE_TWODIGITS_TYPE should be BASE_TWODIGITS_TYPE | Mark Dickinson | 2009-03-20 | 1 | -2/+2 |
|
|
* | Merged revisions 68974-68975 via svnmerge from | Mark Dickinson | 2009-01-26 | 1 | -8/+9 |
|
|
* | Merged revisions 68947 via svnmerge from | Mark Dickinson | 2009-01-25 | 1 | -1/+1 |
|
|
* | Merged revisions 68890 via svnmerge from | Mark Dickinson | 2009-01-24 | 1 | -23/+20 |
|
|
* | 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 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -24/+47 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -42/+7 |
|
|
* | Move the initialization of size_a down below the check for a being NULL. | Neal Norwitz | 2006-07-23 | 1 | -1/+2 |
|
|
* | a & b were dereffed above, so they are known to be valid pointers. | Neal Norwitz | 2006-07-16 | 1 | -3/+2 |
|
|
* | PyLong_FromString(): Continued fraction analysis (explained in | Tim Peters | 2006-05-30 | 1 | -3/+74 |
|
|
* | Patch #1494387: SVN longobject.c compiler warnings | Tim Peters | 2006-05-25 | 1 | -1/+1 |
|
|
* | Faster path for PyLong_FromLongLong, using PyLong_FromLong algorithm | Bob Ippolito | 2006-05-25 | 1 | -10/+50 |
|
|
* | A new table to help string->integer conversion was added yesterday to | Tim Peters | 2006-05-25 | 1 | -14/+13 |
|
|
* | Heavily fiddled variant of patch #1442927: PyLong_FromString optimization. | Tim Peters | 2006-05-24 | 1 | -44/+156 |
|
|
* | Fix problems found by Coverity. | Neal Norwitz | 2006-05-10 | 1 | -4/+4 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 1 | -2/+2 |
|
|
* | Fix int() and long() to repr() their argument when formatting the exception, | Thomas Wouters | 2006-04-11 | 1 | -2/+14 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 1 | -8/+8 |
|
|
* | Patch #837242: id() for large ptr should return a long. | Martin v. Löwis | 2006-04-10 | 1 | -3/+9 |
|
|
* | Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. | Martin v. Löwis | 2006-04-05 | 1 | -1/+1 |
|
|