| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix SF bug #689659, 64-bit int and long hash keys incompatible | Neal Norwitz | 2003-02-23 | 1 | -2/+4 |
|
|
* | _PyLong_Sign(): remove an assert that needed a variable ndigits that | Guido van Rossum | 2003-02-03 | 1 | -3/+2 |
|
|
* | long_from_binary_base(): Sped this a little by computing the # of bits | Tim Peters | 2003-02-02 | 1 | -6/+6 |
|
|
* | Tightened a too-generous assert. | Tim Peters | 2003-02-02 | 1 | -1/+1 |
|
|
* | long(string, base) now takes time linear in len(string) when base is a | Tim Peters | 2003-02-02 | 1 | -15/+108 |
|
|
* | cPickle.c: Full support for the new LONG1 and LONG4. Added comments. | Tim Peters | 2003-02-02 | 1 | -2/+2 |
|
|
* | Squash compiler wng about signed/unsigned comparison mismatch. | Tim Peters | 2003-01-31 | 1 | -1/+1 |
|
|
* | _PyLong_NumBits(): The definition of this was too specific to the quirky | Tim Peters | 2003-01-31 | 1 | -8/+17 |
|
|
* | Implement appropriate __getnewargs__ for all immutable subclassable builtin | Guido van Rossum | 2003-01-29 | 1 | -1/+12 |
|
|
* | Added new private API function _PyLong_NumBits. This will be used at the | Tim Peters | 2003-01-28 | 1 | -0/+35 |
|
|
* | Consolidate the int and long sequence repeat code. Before the change, | Neil Schemenauer | 2002-12-30 | 1 | -19/+0 |
|
|
* | Change int() so that passing a string, unicode, float or long argument | Walter Dörwald | 2002-11-19 | 1 | -9/+20 |
|
|
* | Make int("...") return a long if an int would overflow. | Walter Dörwald | 2002-11-06 | 1 | -8/+10 |
|
|
* | replace thread state objects' ticker and checkinterval fields with two | Skip Montanaro | 2002-09-03 | 1 | -4/+2 |
|
|
* | long_format(), long_lshift(): Someone on c.l.py is trying to boost | Tim Peters | 2002-08-20 | 1 | -2/+2 |
|
|
* | Illustrating by example one good reason not to trust a proof <wink>. | Tim Peters | 2002-08-15 | 1 | -3/+3 |
|
|
* | k_mul() comments: In honor of Dijkstra, made the proof that "t3 fits" | Tim Peters | 2002-08-15 | 1 | -34/+37 |
|
|
* | long_mul(): Simplified exit code. In particular, k_mul() returns a | Tim Peters | 2002-08-15 | 1 | -9/+3 |
|
|
* | k_mul() comments: Simplified the simplified explanation of why ah*bh and | Tim Peters | 2002-08-14 | 1 | -6/+3 |
|
|
* | k_mul() comments: Explained why there's always enough room to subtract | Tim Peters | 2002-08-14 | 1 | -0/+7 |
|
|
* | Fixed error in new comment. | Tim Peters | 2002-08-13 | 1 | -4/+3 |
|
|
* | k_mul(): The fix for (ah+al)*(bh+bl) spilling 1 bit beyond the allocated | Tim Peters | 2002-08-13 | 1 | -8/+44 |
|
|
* | Fix comment for PyLong_AsUnsignedLong() to say that the return value | Guido van Rossum | 2002-08-13 | 1 | -1/+1 |
|
|
* | k_lopsided_mul(): This allocated more space for bslice than necessary. | Tim Peters | 2002-08-12 | 1 | -1/+1 |
|
|
* | Added new function k_lopsided_mul(), which is much more efficient than | Tim Peters | 2002-08-12 | 1 | -10/+72 |
|
|
* | k_mul(): Moved an assert down. In a debug build, interrupting a | Tim Peters | 2002-08-12 | 1 | -2/+2 |
|
|
* | k_mul(): Heh -- I checked in two fixes for the last problem. Only keep | Tim Peters | 2002-08-12 | 1 | -2/+2 |
|
|
* | k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare | Tim Peters | 2002-08-12 | 1 | -3/+11 |
|
|
* | x_mul(): Made life easier for C optimizers in the "grade school" | Tim Peters | 2002-08-12 | 1 | -4/+5 |
|
|
* | k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is | Tim Peters | 2002-08-12 | 1 | -9/+30 |
|
|
* | k_mul: Rearranged computation for better cache use. Ignored overflow | Tim Peters | 2002-08-12 | 1 | -60/+50 |
|
|
* | x_mul(): This failed to normalize its result. | Tim Peters | 2002-08-12 | 1 | -6/+18 |
|
|
* | Introduced helper functions v_iadd and v_isub, for in-place digit-vector | Tim Peters | 2002-08-12 | 1 | -29/+75 |
|
|
* | k_mul(): Repaired another typo in another comment. | Tim Peters | 2002-08-12 | 1 | -1/+1 |
|
|
* | k_mul(): Repaired typo in comment. | Tim Peters | 2002-08-12 | 1 | -1/+1 |
|
|
* | Cautious introduction of a patch that started from | Tim Peters | 2002-08-12 | 1 | -85/+264 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 1 | -1/+2 |
|
|
* | Undef MIN and MAX before defining them, to avoid warnings on certain | Guido van Rossum | 2002-07-13 | 1 | -0/+2 |
|
|
* | Patch #568124: Add doc string macros. | Martin v. Löwis | 2002-06-13 | 1 | -2/+2 |
|
|
* | Clarify return value of PyLong_AsLongLong(). | Jeremy Hylton | 2002-04-23 | 1 | -1/+1 |
|
|
* | PyObject_Del can now be used as a function designator. | Neil Schemenauer | 2002-04-12 | 1 | -1/+1 |
|
|
* | Patch #494047: removes 64-bit ?: to cope on plan9. | Martin v. Löwis | 2002-03-09 | 1 | -2/+10 |
|
|
* | _PyLong_Copy(): was creating a copy of the absolute value, but should | Tim Peters | 2002-03-02 | 1 | -1/+1 |
|
|
* | Patch #508038: Do not use a type as a variable name. | Martin v. Löwis | 2002-02-16 | 1 | -3/+3 |
|
|
* | long_true_divide(): decref its converted arguments. test_long_future.py | Tim Peters | 2001-11-04 | 1 | -2/+5 |
|
|
* | Enable GC for new-style instances. This touches lots of files, since | Guido van Rossum | 2001-10-05 | 1 | -1/+2 |
|
|
* | SF [#466125] PyLong_AsLongLong works for any integer. | Tim Peters | 2001-09-30 | 1 | -1/+7 |
|
|
* | Add additional coercion support for "self subtypes" to int, long, | Guido van Rossum | 2001-09-19 | 1 | -0/+5 |
|
|
* | A fix for SF bug #461546 (bug in long_mul). | Guido van Rossum | 2001-09-15 | 1 | -10/+14 |
|
|
* | based upon a suggestion in c.l.py, this slight expansion of the | Skip Montanaro | 2001-09-13 | 1 | -1/+1 |
|
|