| Commit message (Expand) | Author | Age | Files | Lines |
* | Silly typo. Not sure how that got in. | Michael W. Hudson | 2002-07-19 | 1 | -1/+1 |
|
|
* | A few days ago, Guido said (in the thread "[Python-Dev] Python | Michael W. Hudson | 2002-07-19 | 1 | -1/+34 |
|
|
* | More sort cleanup: Moved the special cases from samplesortslice into | Tim Peters | 2002-07-19 | 1 | -65/+73 |
|
|
* | binarysort() cleanup: Documented the key invariants, explained why they | Tim Peters | 2002-07-19 | 1 | -2/+13 |
|
|
* | listreverse(): Don't call the new reverse_slice unless the list | Tim Peters | 2002-07-19 | 1 | -1/+2 |
|
|
* | Cleanup yielding a small speed boost: before rich comparisons were | Tim Peters | 2002-07-19 | 1 | -50/+32 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2002-07-19 | 1 | -22/+22 |
|
|
* | Cleanup: Define one internal utility for reversing a list slice, and | Tim Peters | 2002-07-19 | 1 | -28/+20 |
|
|
* | Remove extraneous semicolon. | Jeremy Hylton | 2002-07-18 | 1 | -1/+1 |
|
|
* | staticforward bites the dust. | Jeremy Hylton | 2002-07-17 | 11 | -22/+23 |
|
|
* | Remove the next() method -- one is supplied automatically by | Guido van Rossum | 2002-07-16 | 1 | -16/+11 |
|
|
* | Remove the next() method -- one is supplied automatically by | Guido van Rossum | 2002-07-16 | 1 | -10/+1 |
|
|
* | Make StopIteration a sink state. This is done by clearing out the | Guido van Rossum | 2002-07-16 | 1 | -28/+11 |
|
|
* | Make StopIteration a sink state. This is done by clearing out the | Guido van Rossum | 2002-07-16 | 1 | -62/+47 |
|
|
* | Whitespace normalization. | Guido van Rossum | 2002-07-16 | 1 | -66/+66 |
|
|
* | Make StopIteration a sink state. This is done by clearing out the | Guido van Rossum | 2002-07-16 | 1 | -11/+10 |
|
|
* | The object returned by tp_new() may not have a tp_init. | Jeremy Hylton | 2002-07-16 | 1 | -1/+2 |
|
|
* | Make list_iter() really static. | Guido van Rossum | 2002-07-16 | 1 | -1/+1 |
|
|
* | valid_identifier(): use an unsigned char* so that isalpha() will do | Guido van Rossum | 2002-07-16 | 1 | -2/+2 |
|
|
* | docompare(): Another reasonable optimization from Jonathan Hogg for the | Tim Peters | 2002-07-15 | 1 | -1/+1 |
|
|
* | WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few | Tim Peters | 2002-07-14 | 1 | -1/+1 |
|
|
* | Undef MIN and MAX before defining them, to avoid warnings on certain | Guido van Rossum | 2002-07-13 | 1 | -0/+2 |
|
|
* | Don't declare a function with staticforward. | Jeremy Hylton | 2002-07-13 | 1 | -2/+2 |
|
|
* | docompare(): Use PyTuple_New instead of Py_BuildValue to build compare's | Tim Peters | 2002-07-11 | 1 | -2/+7 |
|
|
* | Extend function() to support an optional closure argument. | Jeremy Hylton | 2002-07-11 | 1 | -12/+65 |
|
|
* | object.h special-build macro minefield: renamed all the new lexical | Tim Peters | 2002-07-11 | 5 | -97/+72 |
|
|
* | Documented PYMALLOC_DEBUG. This completes primary coverage of all the | Tim Peters | 2002-07-10 | 1 | -1/+1 |
|
|
* | The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added | Tim Peters | 2002-07-09 | 1 | -0/+15 |
|
|
* | SF bug 578752: COUNT_ALLOCS vs heap types | Tim Peters | 2002-07-08 | 1 | -0/+9 |
|
|
* | Rearranged and added comments to object.h, to clarify many things | Tim Peters | 2002-07-07 | 1 | -6/+2 |
|
|
* | Removed 3 unlikely #includes that were only needed for the non-gc flavor | Tim Peters | 2002-07-07 | 1 | -5/+0 |
|
|
* | Trashcan cleanup: Now that cyclic gc is always there, the trashcan | Tim Peters | 2002-07-07 | 1 | -50/+40 |
|
|
* | Removed WITH_CYCLE_GC #ifdef-ery. Holes: | Tim Peters | 2002-07-07 | 2 | -46/+0 |
|
|
* | Patch #569753: Remove support for WIN16. | Martin v. Löwis | 2002-06-30 | 2 | -6/+6 |
|
|
* | Fix SF bug 546434 -- buffer slice type inconsistent. | Raymond Hettinger | 2002-06-25 | 1 | -13/+0 |
|
|
* | Fix SF bug 572567: Memory leak in object comparison. | Raymond Hettinger | 2002-06-24 | 1 | -0/+1 |
|
|
* | Fix for SF bug 571885 | Jeremy Hylton | 2002-06-20 | 1 | -2/+2 |
|
|
* | SF 569257 -- Name mangle double underscored variable names in __slots__. | Raymond Hettinger | 2002-06-20 | 1 | -1/+21 |
|
|
* | Fix the bug described in | Michael W. Hudson | 2002-06-19 | 1 | -5/+9 |
|
|
* | Patch from SF bug 570483 (Tim Northover). | Guido van Rossum | 2002-06-18 | 1 | -0/+5 |
|
|
* | About the new but unreferenced new_class, Guido sez: | Michael W. Hudson | 2002-06-18 | 1 | -15/+0 |
|
|
* | SF patch 568629 by Oren Tirosh: types made callable. | Guido van Rossum | 2002-06-14 | 5 | -9/+214 |
|
|
* | Inexplicably, recurse_down_subclasses() was comparing the object | Guido van Rossum | 2002-06-14 | 1 | -1/+2 |
|
|
* | Missed one use of new PyDoc_STRVAR macro | Neal Norwitz | 2002-06-14 | 1 | -2/+2 |
|
|
* | SF bug # 493951 string.{starts,ends}with vs slices | Neal Norwitz | 2002-06-14 | 1 | -45/+36 |
|
|
* | SF # 533070 Silence AIX C Compiler Warnings | Neal Norwitz | 2002-06-13 | 1 | -1/+1 |
|
|
* | Major cleanup operation: whenever there's a call that looks for an | Guido van Rossum | 2002-06-13 | 1 | -10/+59 |
|
|
* | Fix for SF bug 532646. This is a little simpler than what Neal | Guido van Rossum | 2002-06-13 | 1 | -1/+17 |
|
|
* | SF # 561244 Micro optimizations | Neal Norwitz | 2002-06-13 | 1 | -5/+3 |
|
|
* | Fix typo in exception message | Neal Norwitz | 2002-06-13 | 1 | -1/+1 |
|
|