| Commit message (Expand) | Author | Age | Files | Lines |
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -1076/+1076 |
|
|
* | Improve error message from nb_int returning a non-integer, in various PyInt_A... | Mark Dickinson | 2010-05-02 | 1 | -4/+4 |
|
|
* | Silence a compiler warning. | Raymond Hettinger | 2010-04-03 | 1 | -1/+1 |
|
|
* | Issue #1811: Improve accuracy and consistency of true division for integers. | Mark Dickinson | 2009-12-27 | 1 | -6/+25 |
|
|
* | Avoid undefined behaviour due to overflow in i_divmod (Objects/intobject.c). | Mark Dickinson | 2009-12-04 | 1 | -1/+10 |
|
|
* | Issue #7406: Fix some occurrences of potential signed overflow in int | Mark Dickinson | 2009-12-02 | 1 | -3/+6 |
|
|
* | Silence another MSVC warning about unary minus. | Mark Dickinson | 2009-11-16 | 1 | -1/+1 |
|
|
* | Issue #6713: Improve decimal int -> string conversions. Thanks Gawain | Mark Dickinson | 2009-09-27 | 1 | -10/+28 |
|
|
* | Remove unnecessary uses of context in PyGetSetDef. See issue #5880. | Mark Dickinson | 2009-05-03 | 1 | -10/+15 |
|
|
* | Issue #3166: Make long -> float (and int -> float) conversions | Mark Dickinson | 2009-04-20 | 1 | -12/+68 |
|
|
* | Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. | Martin v. Löwis | 2009-01-07 | 1 | -1/+2 |
|
|
* | Issue #3439: add bit_length method to int and long. | Mark Dickinson | 2008-12-17 | 1 | -0/+36 |
|
|
* | - Issue #2862: Make int and float freelist management consistent with other | Gregory P. Smith | 2008-07-06 | 1 | -35/+25 |
|
|
* | 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 | -7/+7 |
|
|
* | 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 | -8/+8 |
|
|
* | 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 |
|
|
* | Pluralss only need one s, not 2 (intss -> ints) | Neal Norwitz | 2008-03-27 | 1 | -1/+1 |
|
|
* | Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster. | Jeffrey Yasskin | 2008-03-18 | 1 | -1/+1 |
|
|
* | 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 | -19/+71 |
|
|
* | Patch #1953 | Christian Heimes | 2008-02-04 | 1 | -18/+34 |
|
|
* | Continue rolling back pep-3141 changes that changed behavior from 2.5. This | Jeffrey Yasskin | 2008-01-05 | 1 | -32/+0 |
|
|
* | Make math.{floor,ceil}({int,long}) return float again for backwards | Jeffrey Yasskin | 2008-01-04 | 1 | -2/+2 |
|
|
* | Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (just | Jeffrey Yasskin | 2008-01-03 | 1 | -16/+68 |
|
|
* | #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 |
|
|
* | Add a bunch of GIL release/acquire points in tp_print implementations and for | Brett Cannon | 2007-09-17 | 1 | -1/+4 |
|
|
* | PEP 3123: Provide forward compatibility with Python 3.0, while keeping | Martin v. Löwis | 2007-07-21 | 1 | -14/+13 |
|
|
* | Port rev 55353 from Guido: | Neal Norwitz | 2007-05-16 | 1 | -1/+1 |
|
|
* | As per Armin Rigo's suggestion, remove special handing from intobject.c to de... | Kristján Valur Jónsson | 2007-05-07 | 1 | -7/+2 |
|
|
* | Fix problems in x64 build that were discovered by the testsuite: | Kristján Valur Jónsson | 2007-05-03 | 1 | -0/+4 |
|
|
* | Variation of patch # 1624059 to speed up checking if an object is a subclass | Neal Norwitz | 2007-02-25 | 1 | -1/+1 |
|
|
* | Minor change in int() docstring for proper spacing. | Gustavo Niemeyer | 2007-01-10 | 1 | -1/+1 |
|
|
* | Mention in the int() docstring that a base zero has meaning, as | Gustavo Niemeyer | 2007-01-10 | 1 | -2/+3 |
|
|
* | Bug #1545497: when given an explicit base, int() did ignore NULs | Georg Brandl | 2006-10-12 | 1 | -2/+19 |
|
|
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -2/+14 |
|
|
* | Fix integer negation and absolute value to not rely | Martin v. Löwis | 2006-10-04 | 1 | -4/+3 |
|
|
* | "Conceptual" merge of rev 51711 from the 2.5 branch. | Tim Peters | 2006-09-05 | 1 | -1/+1 |
|
|
* | Patch #1538606, Patch to fix __index__() clipping. | Neal Norwitz | 2006-08-12 | 1 | -6/+11 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 1 | -17/+18 |
|
|
* | Fix int() and long() to repr() their argument when formatting the exception, | Thomas Wouters | 2006-04-11 | 1 | -4/+14 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 1 | -6/+6 |
|
|
* | Remove unnecessary casts in type object initializers. | Georg Brandl | 2006-03-30 | 1 | -1/+1 |
|
|
* | Checking in the code for PEP 357. | Guido van Rossum | 2006-03-07 | 1 | -0/+1 |
|
|
* | Use %ld and casts to long for refcount printing, in absense of a universally | Thomas Wouters | 2006-03-01 | 1 | -2/+7 |
|
|
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | RFE #1436243: make integers in [0..256] preallocated. | Georg Brandl | 2006-02-22 | 1 | -1/+1 |
|
|
* | Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalize | Thomas Wouters | 2006-02-15 | 1 | -1/+3 |
|
|