| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | long_invert(): tiny speed and space optimization. | Tim Peters | 2001-09-11 | 1 | -2/+1 |
|
|
* | More bug 460020. Disable a number of long optimizations for long subclasses. | Tim Peters | 2001-09-11 | 1 | -18/+15 |
|
|
* | SF bug #460020: bug or feature: unicode() and subclasses. | Tim Peters | 2001-09-10 | 1 | -1/+20 |
|
|
* | long_true_divide: reliably force underflow to 0 when the denominator | Tim Peters | 2001-09-06 | 1 | -0/+2 |
|
|
* | Make the error msgs in our pow() implementations consistent. | Tim Peters | 2001-09-05 | 1 | -3/+10 |
|
|
* | Try to recover from that glibc's ldexp apparently doesn't set errno on | Tim Peters | 2001-09-05 | 1 | -2/+2 |
|
|
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 1 | -1/+32 |
|
|
* | Move long_true_divide next to the other division routines (for clarity!). | Tim Peters | 2001-09-04 | 1 | -6/+6 |
|
|
* | Raise OverflowError when appropriate on long->float conversion. Most of | Tim Peters | 2001-09-04 | 1 | -18/+19 |
|
|
* | Introduce new private API function _PyLong_AsScaledDouble. Not used yet, | Tim Peters | 2001-09-04 | 1 | -0/+52 |
|
|
* | New restriction on pow(x, y, z): If z is not None, x and y must be of | Tim Peters | 2001-09-03 | 1 | -3/+8 |
|
|