1. d8b2173 k_mul(): White-box testing turned up that (ah+al)*(bh+bl) can, in rare by Tim Peters · 22 years ago
  2. 3747a0f Fix MSVC warnings. by Guido van Rossum · 22 years ago
  3. ad47da0 Refactor how __dict__ and __weakref__ interact with __slots__. by Guido van Rossum · 22 years ago
  4. 115c888 x_mul(): Made life easier for C optimizers in the "grade school" by Tim Peters · 22 years ago
  5. d64c1de k_mul() and long_mul(): I'm confident that the Karatsuba algorithm is by Tim Peters · 22 years ago
  6. 738eda7 k_mul: Rearranged computation for better cache use. Ignored overflow by Tim Peters · 22 years ago
  7. 44121a6 x_mul(): This failed to normalize its result. by Tim Peters · 22 years ago
  8. 877a212 Introduced helper functions v_iadd and v_isub, for in-place digit-vector by Tim Peters · 22 years ago
  9. fc07e56 k_mul(): Repaired another typo in another comment. by Tim Peters · 22 years ago
  10. 18c15b9 k_mul(): Repaired typo in comment. by Tim Peters · 22 years ago
  11. 5af4e6c Cautious introduction of a patch that started from by Tim Peters · 22 years ago
  12. da1a221 int_lshift(): Simplified/sped overflow-checking. by Tim Peters · 22 years ago
  13. 643d59c Use a better check for overflow from a<<b. by Guido van Rossum · 22 years ago
  14. cc8764c Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level. by Marc-André Lemburg · 22 years ago
  15. 078151d Implement stage B0 of PEP 237: add warnings for operations that by Guido van Rossum · 22 years ago
  16. 3ddb856 Fixed new typos, added a little info about ~sort versus "hint"s. by Tim Peters · 22 years ago
  17. 40af889 Disallow class assignment completely unless both old and new are heap by Guido van Rossum · 22 years ago
  18. e05f65a 1. Combined the base and length arrays into a single array of structs. by Tim Peters · 22 years ago
  19. b80595f The samplesort-vs-mergesort #-of-comparisons comparisons were captured by Tim Peters · 22 years ago
  20. f16c3dc Add support for the iterator protocol to weakref proxy objects. by Fred Drake · 22 years ago
  21. f36921c Unicode replace() method with empty pattern argument should fail, like by Guido van Rossum · 22 years ago
  22. 3bc3f28 Only call sq_repeat if the object does not have a nb_multiply slot. One by Neil Schemenauer · 22 years ago
  23. 671764b Repaired a braino in the description of bad minrun values. by Tim Peters · 22 years ago
  24. 721f62e Major speedup for new-style class creation. Turns out there was some by Guido van Rossum · 22 years ago
  25. 48923c5 Moved special case for tuples from iterobject.c to by Raymond Hettinger · 22 years ago
  26. 7bed213 Significant speedup in new-style object creation: in slot_tp_new(), by Guido van Rossum · 22 years ago
  27. febd61d A modest speedup of object deallocation. call_finalizer() did rather by Guido van Rossum · 22 years ago
  28. 6c511e6 Added info about highwater heap-memory use for the sortperf.py tests; + a by Tim Peters · 22 years ago
  29. 6063e26 PyList_Reverse(): This was leaking a reference to Py_None on every call. by Tim Peters · 22 years ago
  30. 0906e07 Fix a subtle bug in the trashcan code I added yesterday to subtype_dealloc(). by Guido van Rossum · 22 years ago
  31. 3f19b10 Replace abort with Py_FatalError. by Martin v. Löwis · 22 years ago
  32. 657d222 Make more functions static by Neal Norwitz · 22 years ago
  33. d8b995f Make readahead functions static by Neal Norwitz · 22 years ago
  34. 22b1387 Fix SF bug 574207 (chained __slots__ dealloc segfault). by Guido van Rossum · 22 years ago
  35. 6a043f3 PyUnicode_Contains(): The memcmp() call didn't take into account the by Barry Warsaw · 22 years ago
  36. 817918c Committing patch #591250 which provides "str1 in str2" when str1 is a by Barry Warsaw · 22 years ago
  37. 7a6e959 SF patch 580331 by Oren Tirosh: make file objects their own iterator. by Guido van Rossum · 22 years ago
  38. bc552ce SF 582071 clarified the .split() method's docstring to note that sep=None by Raymond Hettinger · 22 years ago
  39. 66860f6 Sped the usual case for sorting by calling PyObject_RichCompareBool by Tim Peters · 22 years ago
  40. 6bdbc9e SF bug 590366: Small typo in listsort:ParseTuple by Tim Peters · 22 years ago
  41. f4be427 Tim found that once test_longexp has run, test_sort takes very much by Guido van Rossum · 22 years ago
  42. 0dbab4c5 SF patch 588728 (Nathan Srebro). by Guido van Rossum · 22 years ago
  43. a64dc24 Replaced samplesort with a stable, adaptive mergesort. by Tim Peters · 22 years ago
  44. 92f81f2 Checking in the doc file for "timsort". There's way too much here to by Tim Peters · 22 years ago
  45. cee5ca0 SF patch #587889, fix memory leak of tp_doc by Neal Norwitz · 22 years ago
  46. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  47. a290527 Excise DL_IMPORT/EXPORT from object.h, and related files. This patch by Mark Hammond · 22 years ago
  48. 88fe4ff Fix the problem of not raising a TypeError exception when doing: by Neal Norwitz · 22 years ago
  49. 673c0a2 Patch #574867: Correct list.extend docstring. by Martin v. Löwis · 22 years ago
  50. 7beeed5 SF patch #577031, remove PyArg_Parse() since it's deprecated by Neal Norwitz · 22 years ago
  51. 75d2d94 Patch #554716: Use __va_copy where available. by Martin v. Löwis · 22 years ago
  52. 35b37a5 tighten up the unicode object's docstring a tad by Skip Montanaro · 22 years ago
  53. 73a088e Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError. by Jeremy Hylton · 22 years ago
  54. f20fcf9 Complain if __len__() returns < 0, just like classic classes. by Jeremy Hylton · 22 years ago
  55. 206d8f8 Silly typo. Not sure how that got in. by Michael W. Hudson · 22 years ago
  56. f0d777c A few days ago, Guido said (in the thread "[Python-Dev] Python by Michael W. Hudson · 22 years ago
  57. 330f9e9 More sort cleanup: Moved the special cases from samplesortslice into by Tim Peters · 22 years ago
  58. 0fe977c binarysort() cleanup: Documented the key invariants, explained why they by Tim Peters · 22 years ago
  59. 326b448 listreverse(): Don't call the new reverse_slice unless the list by Tim Peters · 22 years ago
  60. a8c974c Cleanup yielding a small speed boost: before rich comparisons were by Tim Peters · 22 years ago
  61. 3b01a12 Trimmed trailing whitespace. by Tim Peters · 22 years ago
  62. 8e2e7ca Cleanup: Define one internal utility for reversing a list slice, and by Tim Peters · 22 years ago
  63. d1fedb6 Remove extraneous semicolon. by Jeremy Hylton · 22 years ago
  64. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  65. ca5ed5b Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  66. 86d593e Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  67. 2147df7 Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  68. 613bed3 Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  69. 6b6272c Whitespace normalization. by Guido van Rossum · 22 years ago
  70. 86103ae Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  71. 719841e The object returned by tp_new() may not have a tp_init. by Jeremy Hylton · 22 years ago
  72. 5086e49 Make list_iter() really static. by Guido van Rossum · 22 years ago
  73. 03013a0 valid_identifier(): use an unsigned char* so that isalpha() will do by Guido van Rossum · 22 years ago
  74. 58cf361 docompare(): Another reasonable optimization from Jonathan Hogg for the by Tim Peters · 22 years ago
  75. 7a1f917 WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few by Tim Peters · 22 years ago
  76. b6d29b7 Undef MIN and MAX before defining them, to avoid warnings on certain platforms. by Guido van Rossum · 22 years ago
  77. a4b4c3b Don't declare a function with staticforward. by Jeremy Hylton · 22 years ago
  78. f2a0473 docompare(): Use PyTuple_New instead of Py_BuildValue to build compare's by Tim Peters · 22 years ago
  79. df3f793 Extend function() to support an optional closure argument. by Jeremy Hylton · 22 years ago
  80. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  81. 889f61d Documented PYMALLOC_DEBUG. This completes primary coverage of all the by Tim Peters · 22 years ago
  82. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  83. c6a3ff6 SF bug 578752: COUNT_ALLOCS vs heap types by Tim Peters · 22 years ago
  84. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  85. a6269a8 Removed 3 unlikely #includes that were only needed for the non-gc flavor by Tim Peters · 22 years ago
  86. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  87. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  88. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  89. 5a04aec Fix SF bug 546434 -- buffer slice type inconsistent. by Raymond Hettinger · 22 years ago
  90. ab5dae3 Fix SF bug 572567: Memory leak in object comparison. by Raymond Hettinger · 22 years ago
  91. 8b47dff Fix for SF bug 571885 by Jeremy Hylton · 22 years ago
  92. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  93. 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
  94. 6351757 Patch from SF bug 570483 (Tim Northover). by Guido van Rossum · 22 years ago
  95. b1e8154 About the new but unreferenced new_class, Guido sez: by Michael W. Hudson · 22 years ago
  96. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  97. 59e6c53 Inexplicably, recurse_down_subclasses() was comparing the object by Guido van Rossum · 22 years ago
  98. 2c2e827 Missed one use of new PyDoc_STRVAR macro by Neal Norwitz · 22 years ago
  99. 1f68fc7 SF bug # 493951 string.{starts,ends}with vs slices by Neal Norwitz · 22 years ago
  100. 4178515 SF # 533070 Silence AIX C Compiler Warnings by Neal Norwitz · 22 years ago