| Commit message (Expand) | Author | Age | Files | Lines |
* | 00147-add-debug-malloc-stats.patch | Fedora Python maintainers | 2020-09-29 | 1 | -0/+17 |
|
|
* | bpo-16055: Fixes incorrect error text for int('1', base=1000) (#6980) | Victor Stinner | 2018-05-18 | 1 | -1/+1 |
|
|
* | consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563) | Benjamin Peterson | 2017-09-14 | 1 | -4/+4 |
|
|
* | Issue #28998: More APIs now support longs as well as ints. | Serhiy Storchaka | 2016-12-27 | 1 | -2/+5 |
|
|
* | Issue #24469: Fixed memory leak caused by int subclasses without overridden | Serhiy Storchaka | 2016-11-29 | 1 | -8/+0 |
|
|
* | Issue #28139: Fix messed up indentation | Martin Panter | 2016-09-17 | 1 | -2/+2 |
|
|
* | Issue #22463: Backport compiler warning fixes and workarounds | Martin Panter | 2016-06-21 | 1 | -2/+2 |
|
|
* | remove strange casts | Benjamin Peterson | 2014-11-23 | 1 | -4/+4 |
|
|
* | Issue #15989: Fix several occurrences of integer overflow | Serhiy Storchaka | 2013-01-19 | 1 | -0/+14 |
|
|
* | Issue #16761: Raise TypeError when int() or long() called with base argument ... | Serhiy Storchaka | 2012-12-28 | 1 | -1/+7 |
|
|
* | Issue #14783: Backport changes from 3.2. | Chris Jerdonek | 2012-10-08 | 1 | -8/+13 |
|
|
* | Issue #12973: Fix int.__pow__ overflow checks that invoked undefined behaviou... | Mark Dickinson | 2011-09-19 | 1 | -2/+8 |
|
|
* | 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 |
|
|