| Commit message (Expand) | Author | Age | Files | Lines |
* | long_format(), long_lshift(): Someone on c.l.py is trying to boost | Tim Peters | 2002-08-20 | 1 | -2/+2 |
|
|
* | Fix some endcase bugs in unicode rfind()/rindex() and endswith(). | Guido van Rossum | 2002-08-20 | 2 | -4/+4 |
|
|
* | getinstclassname(): Squash new compiler wng in assert (comparison of | Tim Peters | 2002-08-20 | 1 | -1/+1 |
|
|
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 3 | -100/+135 |
|
|
* | Call me anal, but there was a particular phrase that was speading to | Guido van Rossum | 2002-08-19 | 6 | -8/+8 |
|
|
* | Another modest speedup in PyObject_GenericGetAttr(): inline the call | Guido van Rossum | 2002-08-19 | 1 | -2/+26 |
|
|
* | Make PyDescr_IsData() a macro. It's too simple to be a function. | Guido van Rossum | 2002-08-19 | 1 | -6/+0 |
|
|
* | Check in my ultra-shortlived patch #597220. | Michael W. Hudson | 2002-08-19 | 1 | -3/+3 |
|
|
* | Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). | Guido van Rossum | 2002-08-19 | 1 | -3/+20 |
|
|
* | 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 |
|
|