1. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  2. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  3. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 18 years ago
  4. e0e89f7 Revert 42400. by Martin v. Löwis · 18 years ago
  5. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 18 years ago
  6. 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 18 years ago
  7. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  8. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  9. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  10. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  11. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  12. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
  13. aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
  14. a84f3ab SF #1022910: Conserve memory with list.pop() by Raymond Hettinger · 20 years ago
  15. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  16. f076953 SF patch #1005778, Fix seg fault if list object is modified during list.index() by Neal Norwitz · 20 years ago
  17. 651dd52 Previous commit was viewed as "perverse". Changed to just cast the unused by Brett Cannon · 20 years ago
  18. 5ad28e1 Tweak previous patch to silence a warning about the unused left value in the by Brett Cannon · 20 years ago
  19. 8fc4a91 list_ass_slice(): Document the obscure new intent that deleting a slice by Tim Peters · 20 years ago
  20. 7357222 list_ass_slice(): The difference between "recycle" and "recycled" was by Tim Peters · 20 years ago
  21. 8d9eb10 Armin asked for a list_ass_slice review in his checkin, so here's the result. by Tim Peters · 20 years ago
  22. 1dd04a0 This is a reorganization of list_ass_slice(). It should probably be reviewed, by Armin Rigo · 20 years ago
  23. a37bbf2 What if you call lst.__init__() while it is being sorted? :-) by Armin Rigo · 20 years ago
  24. c0aaa2d * Simplify and speed-up list_resize(). Relying on the newly documented by Raymond Hettinger · 20 years ago
  25. 93677f0 * drop the unreasonable list invariant that ob_item should never come back by Armin Rigo · 20 years ago
  26. f414fc4 Minor memory leak. by Armin Rigo · 20 years ago
  27. 51b4ade Fix obscure breakage (relative to 2.3) in listsort: the test for list by Tim Peters · 20 years ago
  28. b38e2b6 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  29. 3986d4e PyList_New(): we went to all the trouble of computing and bounds-checking by Tim Peters · 20 years ago
  30. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
  31. 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
  32. fdfe618 Nits: by Raymond Hettinger · 20 years ago
  33. 0468e41 SF patch #947476: Apply freelist technique to lists by Raymond Hettinger · 20 years ago
  34. 45d0b5c Use Py_RETURN_NONE macro where applicable. by Raymond Hettinger · 20 years ago
  35. 501f02c Small refactoring saving one function() and eliminating some indirection. by Raymond Hettinger · 20 years ago
  36. 40a0382 * Specialize ins1() into app1() for appends. Saves several unnecessary by Raymond Hettinger · 20 years ago
  37. 70d172d Get rid of listextend_internal() and explain why the special case by Armin Rigo · 20 years ago
  38. 435bf58 Make iterators length transparent where possible. by Raymond Hettinger · 20 years ago
  39. d4ff741 Revert last change. Found an application that was worse off with resize by Raymond Hettinger · 20 years ago
  40. 0e91643 list_resize() now has an "exact" option for bypassing the overallocation by Raymond Hettinger · 20 years ago
  41. 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 20 years ago
  42. 6e058d7 * Eliminate duplicate call to PyObject_Size(). (Spotted by Michael Hudson.) by Raymond Hettinger · 20 years ago
  43. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 20 years ago
  44. 57c4542 Now that list.extend() is at the root of many list operations, it becomes by Raymond Hettinger · 20 years ago
  45. 8ca92ae Eliminate a big block of duplicate code in PySequence_List() by by Raymond Hettinger · 20 years ago
  46. 97bc618 list_inplace_concat() is now expressed in terms of list_extend() which by Raymond Hettinger · 20 years ago
  47. 66d31f8 Use memcpy() instead of memmove() when the buffers are known to be distinct. by Raymond Hettinger · 20 years ago
  48. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 20 years ago
  49. a6366fe Optimize inner loops for subscript, repeat, and concat. by Raymond Hettinger · 20 years ago
  50. f889e10 Optimize slice assignments. by Raymond Hettinger · 20 years ago
  51. b7d05db Optimize tuple_slice() and make further improvements to list_slice() by Raymond Hettinger · 20 years ago
  52. 99842b6 Small optimizations for list_slice() and list_extend_internal(). by Raymond Hettinger · 20 years ago
  53. fa6c6f8 Keep the list.pop() optimization while restoring the many possibility by Raymond Hettinger · 20 years ago
  54. 9eb86b3 Double the speed of list.pop() which was spending most of its time parsing by Raymond Hettinger · 20 years ago
  55. 90a39bf Refactor list_extend() and list_fill() for gains in code size, memory by Raymond Hettinger · 20 years ago
  56. ab517d2 Fine tune the speed/space trade-off for overallocating small lists. by Raymond Hettinger · 20 years ago
  57. 2731ae4 Fix missing return value. Spotted by Neal Norwitz by Raymond Hettinger · 20 years ago
  58. cb3e580 Optimize list.pop() for the common special case of popping off the end. by Raymond Hettinger · 20 years ago
  59. 4bb9540 * Optimized list appends and pops by making fewer calls the underlying system by Raymond Hettinger · 20 years ago
  60. 7049d81 Revert change accidentally checked in as part of a whitespace normalization by Tim Peters · 21 years ago
  61. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  62. 7832cd6 Apply tuple/list pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  63. f1ca7f5 complete backout of listobject.c v2.171 by Andrew MacIntyre · 21 years ago
  64. 3097341 Revert previous two checkins to repair test failure. by Jeremy Hylton · 21 years ago
  65. 694e3a4 use the correct macro to access list size by Andrew MacIntyre · 21 years ago
  66. d57caed Performance of list([]) in 2.3 came up in a thread on comp.lang.python, by Andrew MacIntyre · 21 years ago
  67. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  68. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  69. 19cb193 Fix memory error treatment correctly. Going to dsu_fail causes by Hye-Shik Chang · 21 years ago
  70. 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago
  71. 37e1363 Make sure the list.sort's decorate step unwinds itself before returning by Raymond Hettinger · 21 years ago
  72. 001f228 Improve the reverse list iterator to free memory as soon as the iterator by Raymond Hettinger · 21 years ago
  73. c24c910 Minor code fixup. Make sure that len reflects the current list size. by Raymond Hettinger · 21 years ago
  74. 1021c44 Optimize reversed(list) using a custom iterator. by Raymond Hettinger · 21 years ago
  75. ceac90a Fix compiler warning about possible use of n without assignment. by Jeremy Hylton · 21 years ago
  76. 0a9b9da Add list.sorted() classmethod. by Raymond Hettinger · 21 years ago
  77. ae4a299 Fix typo found by Neal Norwitz. by Raymond Hettinger · 21 years ago
  78. 42b1ba3 * list.sort() now supports three keyword arguments: cmp, key, and reverse. by Raymond Hettinger · 21 years ago
  79. da0a067 My last fix left n used unitialized in tha a==b case. by Michael W. Hudson · 21 years ago
  80. b4f4938 Fix reference leak noted in test_types: by Michael W. Hudson · 21 years ago
  81. e8049bef Use _PyEval_SliceIndex to handle list.index() calls with by Walter Dörwald · 21 years ago
  82. 2743d87 Fix sloppy index() implementation: by Guido van Rossum · 21 years ago
  83. d05abde SF #754014: list.index() should accept optional start, end arguments by Raymond Hettinger · 21 years ago
  84. 6624e68 SF bug #604716: faster [None]*n or []*n by Raymond Hettinger · 21 years ago
  85. 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 21 years ago
  86. cd12bfc Patch #708604: Check more function results. Will backport to 2.2. by Martin v. Löwis · 21 years ago
  87. 2af713c Squashed new compiler wngs about trying to compare pointers to by Tim Peters · 21 years ago
  88. 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 21 years ago
  89. 3a3cca5 - list.insert(i, x) now interprets negative i as it would be by Guido van Rossum · 21 years ago
  90. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  91. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  92. 4abd5f0 Allow list sort's comparison function to explicitly be None. See SF patch by Skip Montanaro · 22 years ago
  93. ea3fdf4 SF patch #659536: Use PyArg_UnpackTuple where possible. by Raymond Hettinger · 22 years ago
  94. f8bcfb1 SF Bug 645777: list.extend() works with any iterable and is no longer by Raymond Hettinger · 22 years ago
  95. a69c030 The final tweaks before closing by Michael W. Hudson · 22 years ago
  96. b9099c3 SF patch 637176: list.sort crasher by Tim Peters · 22 years ago
  97. 03b109a Use PyOS_snprintf() instead of sprintf and wrap the long line by Neal Norwitz · 22 years ago
  98. 5da854f This is Alex Martelli's patch by Michael W. Hudson · 22 years ago
  99. bfa5a14 Darn! Don't divide by zero. Bad fix. :-) by Guido van Rossum · 22 years ago
  100. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago