summaryrefslogtreecommitdiffstats
path: root/Objects/longobject.c
Commit message (Expand)AuthorAgeFilesLines
* Rewrap some long lines.Mark Dickinson2009-04-021-2/+4
* Merged revisions 70542 via svnmerge fromMark Dickinson2009-03-231-94/+152
* Issue #4258: Make it possible to use 30-bit digits for PyLongs:Mark Dickinson2009-03-181-3/+59
* Merged revisions 69974 via svnmerge fromMark Dickinson2009-02-251-1/+1
* Fix more places in Objects/longobject.c where it's silently assumed thatMark Dickinson2009-02-151-5/+5
* A few more type fixes for py3k that were missed in r69635Mark Dickinson2009-02-151-12/+13
* Merged revisions 69634 via svnmerge fromMark Dickinson2009-02-151-56/+45
* Merged revisions 69498 via svnmerge fromMark Dickinson2009-02-101-1/+1
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Issue #4707: round(x, n) now returns an integer when x is an integer.Mark Dickinson2009-01-281-20/+128
* Merged revisions 68974-68975 via svnmerge fromMark Dickinson2009-01-261-8/+9
* Merged revisions 68947 via svnmerge fromMark Dickinson2009-01-251-1/+1
* Merged revisions 68890 via svnmerge fromMark Dickinson2009-01-241-23/+20
* Some minor cleanups in PyLong_FromLong:Mark Dickinson2009-01-241-12/+15
* Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x.Mark Dickinson2009-01-201-2/+0
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-171-1/+1
* Issue 4910, patch 2 of (probably) 3: pave the way for renaming ofMark Dickinson2009-01-151-1/+1
* Reduce the size of the _PyLong_DigitValue table.Raymond Hettinger2009-01-091-3/+3
* Issue #3106: Speedup some comparisons. This also removes the last callAntoine Pitrou2008-12-201-4/+35
* Forward merge of r67822 to py3k: add bit_length method to int.Mark Dickinson2008-12-171-0/+71
* Issue 4497: silence compiler warnings on Windows.Mark Dickinson2008-12-051-4/+4
* Closes release blocker #3627.Neal Norwitz2008-08-241-0/+2
* Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-...Georg Brandl2008-08-121-3/+3
* Optimization to stop creating new small longs and use theFacundo Batista2008-07-241-22/+28
* Merged revisions 64842,64853,64856,64945 via svnmerge fromRobert Schuppenies2008-07-141-3/+1
* Issue #3236: Return small longs from PyLong_FromString.Martin v. Löwis2008-06-301-0/+8
* Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethodsBenjamin Peterson2008-06-111-3/+0
* Merged revisions 63856-63857,63859-63860 via svnmerge fromMartin v. Löwis2008-06-041-0/+13
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-301-6/+7
* Renamed PyString to PyBytesChristian Heimes2008-05-261-2/+2
* Renamed PyBytes to PyByteArrayChristian Heimes2008-05-261-3/+3
* Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-...Christian Heimes2008-04-191-6/+19
* Merged revisions 62380,62382-62383 via svnmerge fromChristian Heimes2008-04-191-0/+12
* PyLong_FromSsize_t was incorrect when sizeof(size_t) > sizeof(long);Mark Dickinson2008-04-151-12/+53
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-5/+5
* Merged revisions 61964-61979 via svnmerge fromChristian Heimes2008-03-281-5/+5
* Get the ref counting for static allocated longs right.Christian Heimes2008-02-011-9/+7
* Fixed multiple reinitialization of the Python interpreter. The small int list...Christian Heimes2008-01-311-23/+36
* Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowedFacundo Batista2008-01-191-2/+0
* long(float('nan')) raises an OverflowError as discussed on the mailing list a...Christian Heimes2008-01-151-1/+3
* Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful ...Christian Heimes2008-01-041-1/+1
* Merged revisions 59680-59695 via svnmerge fromChristian Heimes2008-01-041-0/+3
* Drop _PyLong_FitsInLong. Fixes #1666.Martin v. Löwis2007-12-201-13/+0
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-137/+137
* Removed PyInt_GetMax and sys.maxintChristian Heimes2007-12-041-6/+0
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-5/+19
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-3/+3
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-8/+12
* Remove more cruft leftover from nb_coerce. Rename nb_coerce toNeil Schemenauer2007-09-211-1/+1
* Merged revisions 58203-58210 via svnmerge fromThomas Wouters2007-09-191-0/+8