COMMITS
/ Objects/longobject.c February 25, 2009
M
Merged revisions 69974 via svnmerge from
Mark Dickinson committed
February 15, 2009
M
Fix more places in Objects/longobject.c where it's silently assumed that
Mark Dickinson committed
M
A few more type fixes for py3k that were missed in r69635
Mark Dickinson committed
M
Merged revisions 69634 via svnmerge from
Mark Dickinson committed
February 10, 2009
M
Merged revisions 69498 via svnmerge from
Mark Dickinson committed
February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
January 28, 2009
M
Issue #4707: round(x, n) now returns an integer when x is an integer.
Mark Dickinson committed
January 26, 2009
M
Merged revisions 68974-68975 via svnmerge from
Mark Dickinson committed
January 25, 2009
M
Merged revisions 68947 via svnmerge from
Mark Dickinson committed
January 24, 2009
M
Merged revisions 68890 via svnmerge from
Mark Dickinson committed
M
Some minor cleanups in PyLong_FromLong:
Mark Dickinson committed
January 20, 2009
M
Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x.
Mark Dickinson committed
January 17, 2009
M
Issue #4910, patch 3/3: rename nb_long to nb_reserved
Mark Dickinson committed
January 15, 2009
M
Issue 4910, patch 2 of (probably) 3: pave the way for renaming of
Mark Dickinson committed
January 9, 2009
R
Reduce the size of the _PyLong_DigitValue table.
Raymond Hettinger committed
December 20, 2008
A
Issue #3106: Speedup some comparisons. This also removes the last call
Antoine Pitrou committed
December 17, 2008
M
Forward merge of r67822 to py3k: add bit_length method to int.
Mark Dickinson committed
December 5, 2008
M
Issue 4497: silence compiler warnings on Windows.
Mark Dickinson committed
August 24, 2008
N
Closes release blocker #3627.
Neal Norwitz committed
August 12, 2008
July 24, 2008
F
Optimization to stop creating new small longs and use the
Facundo Batista committed
July 14, 2008
R
Merged revisions 64842,64853,64856,64945 via svnmerge from
Robert Schuppenies committed
June 30, 2008
M
Issue #3236: Return small longs from PyLong_FromString.
Martin v. Löwis committed
June 11, 2008
B
Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods
Benjamin Peterson committed
June 4, 2008
M
Merged revisions 63856-63857,63859-63860 via svnmerge from
Martin v. Löwis committed
May 30, 2008
E
Refactor and clean up str.format() code (and helpers) in advance of optimizations.
Eric Smith committed
May 26, 2008
C
Renamed PyString to PyBytes
Christian Heimes committed
C
Renamed PyBytes to PyByteArray
Christian Heimes committed
April 19, 2008
C
Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-62379,62381 via svnmerge from
Christian Heimes committed
C
Merged revisions 62380,62382-62383 via svnmerge from
Christian Heimes committed
April 15, 2008
M
PyLong_FromSsize_t was incorrect when sizeof(size_t) > sizeof(long);
Mark Dickinson committed
March 28, 2008
C
Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge from
Christian Heimes committed
C
Merged revisions 61964-61979 via svnmerge from
Christian Heimes committed
February 1, 2008
C
Get the ref counting for static allocated longs right.
Christian Heimes committed
January 31, 2008
January 19, 2008
F
Fix Issue #1769: Now int('- 1') or int('+ 1') is not allowed
Facundo Batista committed
January 15, 2008
C
long(float('nan')) raises an OverflowError as discussed on the mailing list a week ago
Christian Heimes committed
January 4, 2008
C
C
Merged revisions 59680-59695 via svnmerge from
Christian Heimes committed
December 20, 2007
M
Drop _PyLong_FitsInLong. Fixes #1666.
Martin v. Löwis committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
December 4, 2007
C
Removed PyInt_GetMax and sys.maxint
Christian Heimes committed
M
Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.
Martin v. Löwis committed
December 2, 2007
C
Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h
Christian Heimes committed
November 6, 2007
G
Merging the py3k-pep3137 branch back into the py3k branch.
Guido van Rossum committed
September 21, 2007
N
Remove more cruft leftover from nb_coerce. Rename nb_coerce to
Neil Schemenauer committed
September 19, 2007
T
Merged revisions 58203-58210 via svnmerge from
Thomas Wouters committed
September 10, 2007
M
Drop convert_binop.
Martin v. Löwis committed
August 31, 2007
T
round(1e20) wrongly returned 0.
Thomas Heller committed
August 26, 2007
N
Use unicode and remove support for some uses of str8.
Neal Norwitz committed