| Commit message (Expand) | Author | Age | Files | Lines |
* | Simple but important optimization for descr_check(): instead of the | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | Get this to compile again if Py_USING_UNICODE is not defined. | Neal Norwitz | 2002-08-16 | 1 | -1/+1 |
|
|
* | Squash a few calls to the hideously expensive PyObject_CallObject(o,a) | Guido van Rossum | 2002-08-16 | 3 | -8/+22 |
|
|
* | Fix SF bug 595838 -- buffer in type_new() should not be static. Moved | Guido van Rossum | 2002-08-16 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | This is my patch | Michael W. Hudson | 2002-08-15 | 1 | -2/+12 |
|
|
* | Reflow long lines. | Jeremy Hylton | 2002-08-14 | 1 | -26/+32 |
|
|
* | More changes of DeprecationWarning to FutureWarning. | Guido van Rossum | 2002-08-14 | 3 | -6/+6 |
|
|
* | PyType_Ready(): initialize the base class a bit earlier, so that if we | Guido van Rossum | 2002-08-14 | 1 | -6/+6 |
|
|
* | 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 |
|
|
* | Check for trailing backslash. Fixes #593656. | Martin v. Löwis | 2002-08-14 | 1 | -5/+8 |
|
|
* | Patch #505705: Remove eval in pickle and cPickle. | Martin v. Löwis | 2002-08-14 | 1 | -3/+157 |
|
|
* | Allow more docstrings to be removed during compilation | Neal Norwitz | 2002-08-13 | 2 | -14/+18 |
|
|
* | 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 |
|
|
* | Allow docstrings to be removed during compilation for *SLOT macro and friends | Neal Norwitz | 2002-08-13 | 1 | -3/+5 |
|
|
* | Allow docstrings to be removed during compilation | Neal Norwitz | 2002-08-13 | 1 | -3/+3 |
|
|
* | Add an improvement wrinkle to Neil Schemenauer's change to int_mul | Guido van Rossum | 2002-08-13 | 1 | -2/+4 |
|
|
* | 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 |
|
|
* | Fix MSVC warnings. | Guido van Rossum | 2002-08-12 | 1 | -2/+2 |
|
|
* | Refactor how __dict__ and __weakref__ interact with __slots__. | Guido van Rossum | 2002-08-12 | 1 | -55/+147 |
|
|
* | 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 |
|
|
* | int_lshift(): Simplified/sped overflow-checking. | Tim Peters | 2002-08-11 | 1 | -4/+2 |
|
|
* | Use a better check for overflow from a<<b. | Guido van Rossum | 2002-08-11 | 1 | -2/+4 |
|
|
* | Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. | Marc-André Lemburg | 2002-08-11 | 1 | -1/+55 |
|
|
* | Implement stage B0 of PEP 237: add warnings for operations that | Guido van Rossum | 2002-08-11 | 3 | -3/+41 |
|
|
* | Fixed new typos, added a little info about ~sort versus "hint"s. | Tim Peters | 2002-08-10 | 1 | -4/+10 |
|
|
* | Disallow class assignment completely unless both old and new are heap | Guido van Rossum | 2002-08-10 | 1 | -6/+9 |
|
|
* | 1. Combined the base and length arrays into a single array of structs. | Tim Peters | 2002-08-10 | 2 | -53/+92 |
|
|
* | The samplesort-vs-mergesort #-of-comparisons comparisons were captured | Tim Peters | 2002-08-10 | 1 | -24/+24 |
|
|
* | Add support for the iterator protocol to weakref proxy objects. | Fred Drake | 2002-08-09 | 1 | -38/+64 |
|
|
* | Unicode replace() method with empty pattern argument should fail, like | Guido van Rossum | 2002-08-09 | 1 | -0/+5 |
|
|
* | Only call sq_repeat if the object does not have a nb_multiply slot. One | Neil Schemenauer | 2002-08-09 | 1 | -6/+8 |
|
|
* | Repaired a braino in the description of bad minrun values. | Tim Peters | 2002-08-09 | 1 | -3/+3 |
|
|
* | Major speedup for new-style class creation. Turns out there was some | Guido van Rossum | 2002-08-09 | 1 | -0/+22 |
|
|