| Commit message (Expand) | Author | Age | Files | Lines |
* | Move docstrings for long.to_bytes and long.from_bytes after the corresponding... | Mark Dickinson | 2010-01-30 | 1 | -27/+27 |
|
|
* | Merged revisions 77842 via svnmerge from | Mark Dickinson | 2010-01-30 | 1 | -0/+96 |
|
|
* | simplify string comparison of from_bytes/to_bytes | Benjamin Peterson | 2010-01-09 | 1 | -20/+6 |
|
|
* | Issue #1023290: Added API for the conversion of longs to bytes and vice-versa. | Alexandre Vassalotti | 2010-01-09 | 1 | -0/+199 |
|
|
* | Merged revisions 77234 via svnmerge from | Mark Dickinson | 2010-01-02 | 1 | -221/+146 |
|
|
* | Merged revisions 77062 via svnmerge from | Mark Dickinson | 2009-12-27 | 1 | -30/+250 |
|
|
* | Keep PyLong_AsLongAndOverflow documentation and implementation in sync | Mark Dickinson | 2009-12-21 | 1 | -9/+10 |
|
|
* | Fix error message, for consistency with messages for % and //, and for consis... | Mark Dickinson | 2009-12-07 | 1 | -1/+1 |
|
|
* | Merge in the new GIL. | Antoine Pitrou | 2009-11-10 | 1 | -4/+1 |
|
|
* | Merged revisions 75697 via svnmerge from | Mark Dickinson | 2009-10-25 | 1 | -66/+100 |
|
|
* | Merged revisions 75110 via svnmerge from | Mark Dickinson | 2009-09-28 | 1 | -7/+7 |
|
|
* | Silence compiler warning | Mark Dickinson | 2009-09-24 | 1 | -1/+2 |
|
|
* | Merged revisions 75003 via svnmerge from | Mark Dickinson | 2009-09-21 | 1 | -2/+3 |
|
|
* | Issue #6713 (continued): remove unused arbitrary-base conversion code | Mark Dickinson | 2009-09-18 | 1 | -99/+34 |
|
|
* | Revert accidental changes to Objects/longobject.c | Mark Dickinson | 2009-09-17 | 1 | -44/+104 |
|
|
* | Add some more module maintainers. | Mark Dickinson | 2009-09-17 | 1 | -104/+44 |
|
|
* | Bypass long_repr and _PyLong_Format for str(n), repr(n) | Mark Dickinson | 2009-09-17 | 1 | -8/+2 |
|
|
* | Issue #6713: Improve performance of str(n) and repr(n) for integers n | Mark Dickinson | 2009-09-16 | 1 | -0/+116 |
|
|
* | Merged revisions 74769 via svnmerge from | Mark Dickinson | 2009-09-13 | 1 | -7/+10 |
|
|
* | Merged revisions 74689 via svnmerge from | Mark Dickinson | 2009-09-06 | 1 | -1/+0 |
|
|
* | Merged revisions 72202 via svnmerge from | Mark Dickinson | 2009-05-02 | 1 | -10/+15 |
|
|
* | Typo fix. Thanks Damien Diederen. | Mark Dickinson | 2009-04-27 | 1 | -1/+1 |
|
|
* | Merged revisions 71772 via svnmerge from | Mark Dickinson | 2009-04-20 | 1 | -15/+152 |
|
|
* | Rewrap some long lines. | Mark Dickinson | 2009-04-02 | 1 | -2/+4 |
|
|
* | Merged revisions 70542 via svnmerge from | Mark Dickinson | 2009-03-23 | 1 | -94/+152 |
|
|
* | Issue #4258: Make it possible to use 30-bit digits for PyLongs: | Mark Dickinson | 2009-03-18 | 1 | -3/+59 |
|
|
* | Merged revisions 69974 via svnmerge from | Mark Dickinson | 2009-02-25 | 1 | -1/+1 |
|
|
* | Fix more places in Objects/longobject.c where it's silently assumed that | Mark Dickinson | 2009-02-15 | 1 | -5/+5 |
|
|
* | A few more type fixes for py3k that were missed in r69635 | Mark Dickinson | 2009-02-15 | 1 | -12/+13 |
|
|
* | Merged revisions 69634 via svnmerge from | Mark Dickinson | 2009-02-15 | 1 | -56/+45 |
|
|
* | Merged revisions 69498 via svnmerge from | Mark Dickinson | 2009-02-10 | 1 | -1/+1 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -1/+1 |
|
|
* | Issue #4707: round(x, n) now returns an integer when x is an integer. | Mark Dickinson | 2009-01-28 | 1 | -20/+128 |
|
|
* | 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 |
|
|
* | Some minor cleanups in PyLong_FromLong: | Mark Dickinson | 2009-01-24 | 1 | -12/+15 |
|
|
* | Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x. | Mark Dickinson | 2009-01-20 | 1 | -2/+0 |
|
|
* | Issue #4910, patch 3/3: rename nb_long to nb_reserved | Mark Dickinson | 2009-01-17 | 1 | -1/+1 |
|
|
* | Issue 4910, patch 2 of (probably) 3: pave the way for renaming of | Mark Dickinson | 2009-01-15 | 1 | -1/+1 |
|
|
* | Reduce the size of the _PyLong_DigitValue table. | Raymond Hettinger | 2009-01-09 | 1 | -3/+3 |
|
|
* | Issue #3106: Speedup some comparisons. This also removes the last call | Antoine Pitrou | 2008-12-20 | 1 | -4/+35 |
|
|
* | Forward merge of r67822 to py3k: add bit_length method to int. | Mark Dickinson | 2008-12-17 | 1 | -0/+71 |
|
|
* | Issue 4497: silence compiler warnings on Windows. | Mark Dickinson | 2008-12-05 | 1 | -4/+4 |
|
|
* | Closes release blocker #3627. | Neal Norwitz | 2008-08-24 | 1 | -0/+2 |
|
|
* | Merged revisions 65459,65472,65481,65518,65536,65581,65609,65637,65641,65644-... | Georg Brandl | 2008-08-12 | 1 | -3/+3 |
|
|
* | Optimization to stop creating new small longs and use the | Facundo Batista | 2008-07-24 | 1 | -22/+28 |
|
|
* | Merged revisions 64842,64853,64856,64945 via svnmerge from | Robert Schuppenies | 2008-07-14 | 1 | -3/+1 |
|
|
* | Issue #3236: Return small longs from PyLong_FromString. | Martin v. Löwis | 2008-06-30 | 1 | -0/+8 |
|
|
* | Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods | Benjamin Peterson | 2008-06-11 | 1 | -3/+0 |
|
|