1. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  2. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  3. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  4. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  5. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  6. a69c030 The final tweaks before closing by Michael W. Hudson · 22 years ago
  7. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  8. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  9. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  10. bfa5a14 Darn! Don't divide by zero. Bad fix. :-) by Guido van Rossum · 22 years ago
  11. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago
  12. bb9c5f5 PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value by Neal Norwitz · 22 years ago
  13. aae5999 Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  14. e05f65a 1. Combined the base and length arrays into a single array of structs. by Tim Peters · 22 years ago
  15. 6063e26 PyList_Reverse(): This was leaking a reference to Py_None on every call. by Tim Peters · 22 years ago
  16. 66860f6 Sped the usual case for sorting by calling PyObject_RichCompareBool by Tim Peters · 22 years ago
  17. 6bdbc9e SF bug 590366: Small typo in listsort:ParseTuple by Tim Peters · 22 years ago
  18. a64dc24 Replaced samplesort with a stable, adaptive mergesort. by Tim Peters · 22 years ago
  19. 56796f6 Fix for by Michael W. Hudson · 22 years ago
  20. 673c0a2 Patch #574867: Correct list.extend docstring. by Martin v. Löwis · 22 years ago
  21. 330f9e9 More sort cleanup: Moved the special cases from samplesortslice into by Tim Peters · 22 years ago
  22. 0fe977c binarysort() cleanup: Documented the key invariants, explained why they by Tim Peters · 22 years ago
  23. 326b448 listreverse(): Don't call the new reverse_slice unless the list by Tim Peters · 22 years ago
  24. a8c974c Cleanup yielding a small speed boost: before rich comparisons were by Tim Peters · 22 years ago
  25. 3b01a12 Trimmed trailing whitespace. by Tim Peters · 22 years ago
  26. 8e2e7ca Cleanup: Define one internal utility for reversing a list slice, and by Tim Peters · 22 years ago
  27. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  28. 6b6272c Whitespace normalization. by Guido van Rossum · 22 years ago
  29. 86103ae Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  30. 5086e49 Make list_iter() really static. by Guido van Rossum · 22 years ago
  31. 58cf361 docompare(): Another reasonable optimization from Jonathan Hogg for the by Tim Peters · 22 years ago
  32. a4b4c3b Don't declare a function with staticforward. by Jeremy Hylton · 22 years ago
  33. f2a0473 docompare(): Use PyTuple_New instead of Py_BuildValue to build compare's by Tim Peters · 22 years ago
  34. 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
  35. 2c2e827 Missed one use of new PyDoc_STRVAR macro by Neal Norwitz · 22 years ago
  36. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  37. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  38. 75a20b1 Fold remaining long lines. by Guido van Rossum · 22 years ago
  39. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  40. 93b2cc4 A bogus assert in the new listiter code prevented starting Python in a by Tim Peters · 22 years ago
  41. 14bd6de SF 560736. Optimize list iteration by filling the tp_iter slot. by Raymond Hettinger · 22 years ago
  42. d4e5be5 Closes: #556025 seg fault when doing list(xrange(1e9)) by Neal Norwitz · 22 years ago
  43. 99b5d28 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  44. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 22 years ago
  45. dbb53d9 Fix of SF bug #475877 (Mutable subtype instances are hashable). by Guido van Rossum · 23 years ago
  46. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  47. 52e0717 Give the internal immutable list type .extend and .pop methods (they by Tim Peters · 23 years ago
  48. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  49. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  50. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  51. 6ee4234 SF bug #439104: Tuple richcompares has code-typo. by Tim Peters · 23 years ago
  52. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  53. 1af03e9 Change list.extend() error msgs and NEWS to reflect that list.extend() by Tim Peters · 23 years ago
  54. 442914d Cruft cleanup: removed the #ifdef'ery in support of compiling to allow by Tim Peters · 23 years ago
  55. 65b8b84 roundupsize() and friends: fiddle over-allocation strategy for list resizing. by Tim Peters · 23 years ago
  56. b86c549 Fix core dump whenever PyList_Reverse() was called. by Guido van Rossum · 23 years ago
  57. 65e1cea Convert to rich comparisons: by Guido van Rossum · 23 years ago
  58. db60bb5 fix leak by Jeremy Hylton · 24 years ago
  59. 0e76ab2 Use METH_VARARGS instead of "1" in list method table. by Tim Peters · 24 years ago
  60. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  61. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  62. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  63. e979160 Added include for limits.h by Jack Jansen · 24 years ago
  64. a584664 Check for overflow in list object insertion and raise OverflowError. by Trent Mick · 24 years ago
  65. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  66. 467a67e Fix in PyList_New(). With GC enabled and when out of memory, by Vladimir Marangozov · 24 years ago
  67. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  68. a2f5511 ANSI-fication of the sources. by Fred Drake · 24 years ago
  69. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  70. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  71. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  72. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  73. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  74. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  75. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  76. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  77. 914a2ed Improve TypeError exception message for list catenation. by Fred Drake · 24 years ago
  78. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  79. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  80. 37b1a26 add list_contains and tuplecontains: efficient implementations of tp_contains by Jeremy Hylton · 24 years ago
  81. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  82. ef93b87 Added Christian Tismer's patch to allow list.append(a,b,c) back -- by Guido van Rossum · 24 years ago
  83. c00a938 OKOK, Greg's right, I should've used the :name option in the argument by Guido van Rossum · 24 years ago
  84. 4aa24f9 Made all list methods use PyArg_ParseTuple(), for more accurate diagnostics. by Guido van Rossum · 24 years ago
  85. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  86. fa71701 When deallocating a list, DECREF the items from the end back to the start. by Guido van Rossum · 25 years ago
  87. 9bcd1d7 Improve text of some error messages, as suggested by Sean Reifschneider. by Guido van Rossum · 25 years ago
  88. 3aa23fd Jim Ahlstrom patch: cutoff should be a long for machines with 16-bit by Guido van Rossum · 26 years ago
  89. dedf6d6 listextend(): New method which implements L.extend(L2). by Barry Warsaw · 26 years ago
  90. 2ccaf6f Remove a redundant check from list_slice() and list_ass_slice(). by Guido van Rossum · 26 years ago
  91. 3dd7f3f Added doc strings for methods and a new pop() method. by Guido van Rossum · 26 years ago
  92. 4281258 Minor cleanup by Tim after my changes: by Guido van Rossum · 26 years ago
  93. 4c4e7df Tim's latest, with some of my changes (also a TP suggestion) added: by Guido van Rossum · 26 years ago
  94. a119c0d Tim's revision of the previous patch. He also added some sparts to by Guido van Rossum · 26 years ago
  95. ae621ff Guard against changes in the list size during a compare or sort. by Guido van Rossum · 26 years ago
  96. 9be6283 Tim's quicksort on May 25. by Guido van Rossum · 26 years ago
  97. ed7adcf Tim's quicksort on May 13. by Guido van Rossum · 26 years ago
  98. b705764 Tim's quicksort on May 10. by Guido van Rossum · 26 years ago
  99. e32907d Get rid of the unused ifdefed-out old sort code. by Guido van Rossum · 26 years ago
  100. 82e6a8f Quicksort retuned by Tim Peters. by Guido van Rossum · 26 years ago