1. 70d172d Get rid of listextend_internal() and explain why the special case by Armin Rigo · 20 years ago
  2. 435bf58 Make iterators length transparent where possible. by Raymond Hettinger · 20 years ago
  3. d4ff741 Revert last change. Found an application that was worse off with resize by Raymond Hettinger · 20 years ago
  4. 0e91643 list_resize() now has an "exact" option for bypassing the overallocation by Raymond Hettinger · 20 years ago
  5. 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 20 years ago
  6. 6e058d7 * Eliminate duplicate call to PyObject_Size(). (Spotted by Michael Hudson.) by Raymond Hettinger · 20 years ago
  7. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 20 years ago
  8. 57c4542 Now that list.extend() is at the root of many list operations, it becomes by Raymond Hettinger · 20 years ago
  9. 8ca92ae Eliminate a big block of duplicate code in PySequence_List() by by Raymond Hettinger · 20 years ago
  10. 97bc618 list_inplace_concat() is now expressed in terms of list_extend() which by Raymond Hettinger · 20 years ago
  11. 66d31f8 Use memcpy() instead of memmove() when the buffers are known to be distinct. by Raymond Hettinger · 20 years ago
  12. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  13. a6366fe Optimize inner loops for subscript, repeat, and concat. by Raymond Hettinger · 20 years ago
  14. f889e10 Optimize slice assignments. by Raymond Hettinger · 20 years ago
  15. b7d05db Optimize tuple_slice() and make further improvements to list_slice() by Raymond Hettinger · 20 years ago
  16. 99842b6 Small optimizations for list_slice() and list_extend_internal(). by Raymond Hettinger · 20 years ago
  17. fa6c6f8 Keep the list.pop() optimization while restoring the many possibility by Raymond Hettinger · 20 years ago
  18. 9eb86b3 Double the speed of list.pop() which was spending most of its time parsing by Raymond Hettinger · 20 years ago
  19. 90a39bf Refactor list_extend() and list_fill() for gains in code size, memory by Raymond Hettinger · 20 years ago
  20. ab517d2 Fine tune the speed/space trade-off for overallocating small lists. by Raymond Hettinger · 20 years ago
  21. 2731ae4 Fix missing return value. Spotted by Neal Norwitz by Raymond Hettinger · 20 years ago
  22. cb3e580 Optimize list.pop() for the common special case of popping off the end. by Raymond Hettinger · 20 years ago
  23. 4bb9540 * Optimized list appends and pops by making fewer calls the underlying system by Raymond Hettinger · 20 years ago
  24. 7049d81 Revert change accidentally checked in as part of a whitespace normalization by Tim Peters · 21 years ago
  25. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  26. 7832cd6 Apply tuple/list pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  27. f1ca7f5 complete backout of listobject.c v2.171 by Andrew MacIntyre · 21 years ago
  28. 3097341 Revert previous two checkins to repair test failure. by Jeremy Hylton · 21 years ago
  29. 694e3a4 use the correct macro to access list size by Andrew MacIntyre · 21 years ago
  30. d57caed Performance of list([]) in 2.3 came up in a thread on comp.lang.python, by Andrew MacIntyre · 21 years ago
  31. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  32. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  33. 19cb193 Fix memory error treatment correctly. Going to dsu_fail causes by Hye-Shik Chang · 21 years ago
  34. 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago
  35. 37e1363 Make sure the list.sort's decorate step unwinds itself before returning by Raymond Hettinger · 21 years ago
  36. 001f228 Improve the reverse list iterator to free memory as soon as the iterator by Raymond Hettinger · 21 years ago
  37. c24c910 Minor code fixup. Make sure that len reflects the current list size. by Raymond Hettinger · 21 years ago
  38. 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
  39. ceac90a Fix compiler warning about possible use of n without assignment. by Jeremy Hylton · 21 years ago
  40. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  41. ae4a299 Fix typo found by Neal Norwitz. by Raymond Hettinger · 21 years ago
  42. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  43. da0a067 My last fix left n used unitialized in tha a==b case. by Michael W. Hudson · 21 years ago
  44. b4f4938 Fix reference leak noted in test_types: by Michael W. Hudson · 21 years ago
  45. e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 21 years ago
  46. 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 21 years ago
  47. d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 21 years ago
  48. 6624e68 SF bug #604716: faster [None]*n or []*n by Raymond Hettinger · 21 years ago
  49. 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 21 years ago
  50. cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  51. 2af713c Squashed new compiler wngs about trying to compare pointers to by Tim Peters · 21 years ago
  52. 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 21 years ago
  53. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  54. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  55. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  56. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  57. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  58. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  59. a69c030 The final tweaks before closing by Michael W. Hudson · 22 years ago
  60. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  61. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  62. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  63. bfa5a14 Darn! Don't divide by zero. Bad fix. :-) by Guido van Rossum · 22 years ago
  64. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago
  65. bb9c5f5 PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value by Neal Norwitz · 22 years ago
  66. aae5999 Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  67. e05f65a 1. Combined the base and length arrays into a single array of structs. by Tim Peters · 22 years ago
  68. 6063e26 PyList_Reverse(): This was leaking a reference to Py_None on every call. by Tim Peters · 22 years ago
  69. 66860f6 Sped the usual case for sorting by calling PyObject_RichCompareBool by Tim Peters · 22 years ago
  70. 6bdbc9e SF bug 590366: Small typo in listsort:ParseTuple by Tim Peters · 22 years ago
  71. a64dc24 Replaced samplesort with a stable, adaptive mergesort. by Tim Peters · 22 years ago
  72. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  73. 673c0a2 Patch #574867: Correct list.extend docstring. by Martin v. Löwis · 22 years ago
  74. 330f9e9 More sort cleanup: Moved the special cases from samplesortslice into by Tim Peters · 22 years ago
  75. 0fe977c binarysort() cleanup: Documented the key invariants, explained why they by Tim Peters · 22 years ago
  76. 326b448 listreverse(): Don't call the new reverse_slice unless the list by Tim Peters · 22 years ago
  77. a8c974c Cleanup yielding a small speed boost: before rich comparisons were by Tim Peters · 22 years ago
  78. 3b01a12 Trimmed trailing whitespace. by Tim Peters · 22 years ago
  79. 8e2e7ca Cleanup: Define one internal utility for reversing a list slice, and by Tim Peters · 22 years ago
  80. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  81. 6b6272c Whitespace normalization. by Guido van Rossum · 22 years ago
  82. 86103ae Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  83. 5086e49 Make list_iter() really static. by Guido van Rossum · 22 years ago
  84. 58cf361 docompare(): Another reasonable optimization from Jonathan Hogg for the by Tim Peters · 22 years ago
  85. a4b4c3b Don't declare a function with staticforward. by Jeremy Hylton · 22 years ago
  86. f2a0473 docompare(): Use PyTuple_New instead of Py_BuildValue to build compare's by Tim Peters · 22 years ago
  87. 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
  88. 2c2e827 Missed one use of new PyDoc_STRVAR macro by Neal Norwitz · 22 years ago
  89. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  90. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  91. 75a20b1 Fold remaining long lines. by Guido van Rossum · 22 years ago
  92. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  93. 93b2cc4 A bogus assert in the new listiter code prevented starting Python in a by Tim Peters · 22 years ago
  94. 14bd6de SF 560736. Optimize list iteration by filling the tp_iter slot. by Raymond Hettinger · 22 years ago
  95. d4e5be5 Closes: #556025 seg fault when doing list(xrange(1e9)) by Neal Norwitz · 22 years ago
  96. 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  97. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 22 years ago
  98. dbb53d9 Fix of SF bug #475877 (Mutable subtype instances are hashable). by Guido van Rossum · 23 years ago
  99. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  100. 52e0717 Give the internal immutable list type .extend and .pop methods (they by Tim Peters · 23 years ago