1. 0538786 Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh. by Raymond Hettinger · 17 years ago
  2. 6c0ff8a Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted(). by Raymond Hettinger · 17 years ago
  3. 09bde04 Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal. by Christian Heimes · 17 years ago
  4. 48397d6 Use prefix decrement by Christian Heimes · 17 years ago
  5. b4ee4a1 Added some statistics code to dict and list object code. I wanted to test how a larger freelist affects the reusage of freed objects. Contrary to my gut feelings 80 objects is more than fine for small apps. I haven't profiled a large app yet. by Christian Heimes · 17 years ago
  6. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  7. a97744c Use the right (portable) definition of the max of a Py_ssize_t. by Thomas Wouters · 17 years ago
  8. 8d5cf4e Rewrite the list_inline_repeat overflow check slightly differently. by Guido van Rossum · 17 years ago
  9. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  10. 6c87af5 Optimize PyList_AsTuple(). Improve cache performance by doing the by Raymond Hettinger · 17 years ago
  11. 4e2f714 Fix Issue 1045. by Raymond Hettinger · 17 years ago
  12. fe4826f merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError by Christian Heimes · 17 years ago
  13. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  14. a1e42e1 Fix the overflow checking of list_repeat. by Armin Rigo · 17 years ago
  15. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
  16. a0c0551 Fix a possible segfault from recursing too deep to get the repr of a list. by Brett Cannon · 17 years ago
  17. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
  18. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  19. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  20. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 18 years ago
  21. e7e4e2d Prevent crash if alloc of garbage fails. Found by Typo.pl. by Neal Norwitz · 18 years ago
  22. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  23. 7fd9607 Move initialization to after the asserts for non-NULL values. by Neal Norwitz · 18 years ago
  24. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  25. b88cfad Check return of PyMem_MALLOC (garbage) is non-NULL. by Neal Norwitz · 18 years ago
  26. a00c0b9 Don't leak the list object if there's an error allocating the item storage. Backport candidate by Neal Norwitz · 18 years ago
  27. ffe2395 Remove now-unused variables from tp_traverse and tp_clear methods. by Tim Peters · 19 years ago
  28. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 19 years ago
  29. b1ed7fa Replace INT_MAX with PY_SSIZE_T_MAX. by Martin v. Löwis · 19 years ago
  30. 377be11 More C++-compliance. Note especially listobject.c - to get C++ to accept the by Anthony Baxter · 19 years ago
  31. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  32. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  33. eb079f1 Use Py_ssize_t for counts and sizes. Convert Py_ssize_t using PyInt_FromSsize_t by Martin v. Löwis · 19 years ago
  34. e0e89f7 Revert 42400. by Martin v. Löwis · 19 years ago
  35. 2c95cc6 Support %zd in PyErr_Format and PyString_FromFormat. by Martin v. Löwis · 19 years ago
  36. 26efe40 Get rid of compiler warnings (gcc 3.3.4 on x86) by Neal Norwitz · 19 years ago
  37. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  38. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  39. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  40. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  41. a710b33 SF bug #1242657: list(obj) can swallow KeyboardInterrupt by Raymond Hettinger · 19 years ago
  42. fb09f0e Finalize the freelist of list objects. by Raymond Hettinger · 20 years ago
  43. aa241e0 Checkin Tim's fix to an error discussed on python-dev. Also, add a testcase. by Raymond Hettinger · 20 years ago
  44. a84f3ab SF #1022910: Conserve memory with list.pop() by Raymond Hettinger · 20 years ago
  45. 55be9ea Typo fix: 'comparisions' is not a word by Andrew M. Kuchling · 20 years ago
  46. f076953 SF patch #1005778, Fix seg fault if list object is modified during list.index() by Neal Norwitz · 20 years ago
  47. 651dd52 Previous commit was viewed as "perverse". Changed to just cast the unused by Brett Cannon · 20 years ago
  48. 5ad28e1 Tweak previous patch to silence a warning about the unused left value in the by Brett Cannon · 20 years ago
  49. 8fc4a91 list_ass_slice(): Document the obscure new intent that deleting a slice by Tim Peters · 20 years ago
  50. 7357222 list_ass_slice(): The difference between "recycle" and "recycled" was by Tim Peters · 20 years ago
  51. 8d9eb10 Armin asked for a list_ass_slice review in his checkin, so here's the result. by Tim Peters · 20 years ago
  52. 1dd04a0 This is a reorganization of list_ass_slice(). It should probably be reviewed, by Armin Rigo · 20 years ago
  53. a37bbf2 What if you call lst.__init__() while it is being sorted? :-) by Armin Rigo · 20 years ago
  54. c0aaa2d * Simplify and speed-up list_resize(). Relying on the newly documented by Raymond Hettinger · 20 years ago
  55. 93677f0 * drop the unreasonable list invariant that ob_item should never come back by Armin Rigo · 20 years ago
  56. f414fc4 Minor memory leak. by Armin Rigo · 20 years ago
  57. 51b4ade Fix obscure breakage (relative to 2.3) in listsort: the test for list by Tim Peters · 20 years ago
  58. b38e2b6 Trimmed trailing whitespace. by Tim Peters · 20 years ago
  59. 3986d4e PyList_New(): we went to all the trouble of computing and bounds-checking by Tim Peters · 20 years ago
  60. 9ba301e Moved SunPro warning suppression into pyport.h and out of individual by Nicholas Bastin · 20 years ago
  61. 1ce9e4c Fixed end-of-loop code not reached warning when using SunPro C by Nicholas Bastin · 20 years ago
  62. fdfe618 Nits: by Raymond Hettinger · 21 years ago
  63. 0468e41 SF patch #947476: Apply freelist technique to lists by Raymond Hettinger · 21 years ago
  64. 45d0b5c Use Py_RETURN_NONE macro where applicable. by Raymond Hettinger · 21 years ago
  65. 501f02c Small refactoring saving one function() and eliminating some indirection. by Raymond Hettinger · 21 years ago
  66. 40a0382 * Specialize ins1() into app1() for appends. Saves several unnecessary by Raymond Hettinger · 21 years ago
  67. 70d172d Get rid of listextend_internal() and explain why the special case by Armin Rigo · 21 years ago
  68. 435bf58 Make iterators length transparent where possible. by Raymond Hettinger · 21 years ago
  69. d4ff741 Revert last change. Found an application that was worse off with resize by Raymond Hettinger · 21 years ago
  70. 0e91643 list_resize() now has an "exact" option for bypassing the overallocation by Raymond Hettinger · 21 years ago
  71. 42bec93 Make PySequence_Fast_ITEMS public. (Thanks Skip.) by Raymond Hettinger · 21 years ago
  72. 6e058d7 * Eliminate duplicate call to PyObject_Size(). (Spotted by Michael Hudson.) by Raymond Hettinger · 21 years ago
  73. c1e4f9d Use a new macro, PySequence_Fast_ITEMS to factor out code common to by Raymond Hettinger · 21 years ago
  74. 57c4542 Now that list.extend() is at the root of many list operations, it becomes by Raymond Hettinger · 21 years ago
  75. 8ca92ae Eliminate a big block of duplicate code in PySequence_List() by by Raymond Hettinger · 21 years ago
  76. 97bc618 list_inplace_concat() is now expressed in terms of list_extend() which by Raymond Hettinger · 21 years ago
  77. 66d31f8 Use memcpy() instead of memmove() when the buffers are known to be distinct. by Raymond Hettinger · 21 years ago
  78. ef9bf40 Tidied up the implementations of reversed (including the custom ones by Raymond Hettinger · 21 years ago
  79. a6366fe Optimize inner loops for subscript, repeat, and concat. by Raymond Hettinger · 21 years ago
  80. f889e10 Optimize slice assignments. by Raymond Hettinger · 21 years ago
  81. b7d05db Optimize tuple_slice() and make further improvements to list_slice() by Raymond Hettinger · 21 years ago
  82. 99842b6 Small optimizations for list_slice() and list_extend_internal(). by Raymond Hettinger · 21 years ago
  83. fa6c6f8 Keep the list.pop() optimization while restoring the many possibility by Raymond Hettinger · 21 years ago
  84. 9eb86b3 Double the speed of list.pop() which was spending most of its time parsing by Raymond Hettinger · 21 years ago
  85. 90a39bf Refactor list_extend() and list_fill() for gains in code size, memory by Raymond Hettinger · 21 years ago
  86. ab517d2 Fine tune the speed/space trade-off for overallocating small lists. by Raymond Hettinger · 21 years ago
  87. 2731ae4 Fix missing return value. Spotted by Neal Norwitz by Raymond Hettinger · 21 years ago
  88. cb3e580 Optimize list.pop() for the common special case of popping off the end. by Raymond Hettinger · 21 years ago
  89. 4bb9540 * Optimized list appends and pops by making fewer calls the underlying system by Raymond Hettinger · 21 years ago
  90. 7049d81 Revert change accidentally checked in as part of a whitespace normalization by Tim Peters · 21 years ago
  91. 58eb11c Whitespace normalization. by Tim Peters · 21 years ago
  92. 7832cd6 Apply tuple/list pre-sizing optimization to a broader class of objects. by Raymond Hettinger · 21 years ago
  93. f1ca7f5 complete backout of listobject.c v2.171 by Andrew MacIntyre · 21 years ago
  94. 3097341 Revert previous two checkins to repair test failure. by Jeremy Hylton · 21 years ago
  95. 694e3a4 use the correct macro to access list size by Andrew MacIntyre · 21 years ago
  96. d57caed Performance of list([]) in 2.3 came up in a thread on comp.lang.python, by Andrew MacIntyre · 21 years ago
  97. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 21 years ago
  98. 8f5cdaa * Added a new method flag, METH_COEXIST. by Raymond Hettinger · 21 years ago
  99. 19cb193 Fix memory error treatment correctly. Going to dsu_fail causes by Hye-Shik Chang · 21 years ago
  100. 1df0f65 Fixes and tests for various "holding pointers when arbitrary Python code by Michael W. Hudson · 21 years ago