1. 1fba624 The tracking statistics were actually too pessimistic by Antoine Pitrou · 16 years ago
  2. f8387af Issue #4688: Add a heuristic so that tuples and dicts containing only by Antoine Pitrou · 16 years ago
  3. 1706c64 fix tuple.index() error message #5495 by Benjamin Peterson · 16 years ago
  4. b90304a Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t. by Martin v. Löwis · 16 years ago
  5. b15d6fb Docstring change: Specify exception raised by Andrew M. Kuchling · 16 years ago
  6. e7d8be8 Security patches from Apple: prevent int overflow when allocating memory by Neal Norwitz · 16 years ago
  7. 73e9ffc Fixed: sys.getsizeof does not take the actual length of the tuples into account. by Robert Schuppenies · 16 years ago
  8. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  9. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  10. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
  11. 55285ef Return ints instead of longs for tuple.count() and tuple.index(). by Raymond Hettinger · 17 years ago
  12. 5b07ebc Issue 2025: Add tuple.count() and tuple.index() to follow the ABC in collections.Sequence. by Raymond Hettinger · 17 years ago
  13. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  14. 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
  15. 31ba848 Fix error introduced by r58288; if a tuple is length 0 return its repr and by Brett Cannon · 17 years ago
  16. 0b14f24 tuple.__repr__ did not consider a reference loop as it is not possible from by Brett Cannon · 17 years ago
  17. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
  18. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
  19. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  20. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  21. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 18 years ago
  22. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  23. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  24. 72d2067 Remove "static forward" declaration. Move constructors after the type objects. by Martin v. Löwis · 19 years ago
  25. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 19 years ago
  26. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 19 years ago
  27. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 19 years ago
  28. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 19 years ago
  29. 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
  30. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  31. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  32. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  33. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  34. 57c2d93 Add a final permutation step to the tuple hash function. by Raymond Hettinger · 20 years ago
  35. 4ec44e8 Replaced arbitrary addend in tuple_hash with one that is known to generate by Raymond Hettinger · 20 years ago
  36. 41bd022 SF bug #942952: Weakness in tuple hash by Raymond Hettinger · 20 years ago
  37. 6fce78e Restored revision 2.87. by Armin Rigo · 21 years ago
  38. 1c3fd87 PyTuple_New(): vrbl i no longer referenced, so removed it (which kills by Tim Peters · 21 years ago
  39. 5671615 This is the fastest I could get on Intel GCC. I kept the memset() in to clear by Armin Rigo · 21 years ago
  40. 7cdf3e8 memset() hunt continuing. This is a net win. by Armin Rigo · 21 years ago
  41. 435bf58 Make iterators length transparent where possible. by Raymond Hettinger · 21 years ago
  42. 325d169 Eliminate an unnecessary test on a common code path. by Raymond Hettinger · 21 years ago
  43. a6366fe Optimize inner loops for subscript, repeat, and concat. by Raymond Hettinger · 21 years ago
  44. b7d05db Optimize tuple_slice() and make further improvements to list_slice() by Raymond Hettinger · 21 years ago
  45. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
  46. 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 21 years ago
  47. 2af713c Squashed new compiler wngs about trying to compare pointers to by Tim Peters · 21 years ago
  48. 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 21 years ago
  49. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  50. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  51. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  52. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago
  53. bb9c5f5 PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value by Neal Norwitz · 22 years ago
  54. bd9adab Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  55. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  56. 48923c5 Moved special case for tuples from iterobject.c to by Raymond Hettinger · 22 years ago
  57. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  58. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  59. 8b47dff Fix for SF bug 571885 by Jeremy Hylton · 22 years ago
  60. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  61. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  62. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  63. 626d774 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 23 years ago
  64. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 23 years ago
  65. f70590f _PyTuple_Resize(): this dumped core on tuple(globals()) for me. Turns by Guido van Rossum · 23 years ago
  66. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  67. 7b07a41 The endless 460020 bug. by Tim Peters · 23 years ago
  68. 1b8ca0d Rewrite the tuple() docstring to parallel the list() docstring. by Tim Peters · 23 years ago
  69. 9577761 Repair apparent cut'n'pasteo in tuple() docstring. by Tim Peters · 23 years ago
  70. 4b8c0f6 More stuff discovered while writing the simplest of testcases: by Guido van Rossum · 23 years ago
  71. ae960af Make str and tuple types subclassable. by Guido van Rossum · 23 years ago
  72. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  73. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  74. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  75. 0dcea59 _PyTuple_Resize: guard against PyTuple_New() returning NULL, using Tim's by Thomas Wouters · 23 years ago
  76. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  77. 6a92237 _PyTuple_Resize: take into account the empty tuple. There can be only one. by Thomas Wouters · 23 years ago
  78. d7ed3bf Speed tuple comparisons in two ways: by Tim Peters · 23 years ago
  79. f77bc62 Same treatment as listobject.c: by Guido van Rossum · 24 years ago
  80. 08b53e6 Simplify _PyTuple_Resize by not using the tuple free list and dropping by Neil Schemenauer · 24 years ago
  81. 3cd7604 Correctly cast the return value of realloc. by Martin v. Löwis · 24 years ago
  82. c58dbeb Correctly use realloc return value. Fixes bug #114424. by Martin v. Löwis · 24 years ago
  83. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  84. ba09633 ANSI-fication of the sources. by Fred Drake · 24 years ago
  85. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  86. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  87. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  88. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  89. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  90. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  91. 29dc381 Michael Hudson <mwh21@cam.ac.uk>: by Marc-André Lemburg · 24 years ago
  92. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  93. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  94. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  95. 37b1a26 add list_contains and tuplecontains: efficient implementations of tp_contains by Jeremy Hylton · 24 years ago
  96. 5ce78f8 Patch by Charles G Waldman to avoid a sneaky memory leak in by Guido van Rossum · 24 years ago
  97. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 25 years ago
  98. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  99. 0eb55ac Mark Favas was quick to note that the last checkin divides by zero by Guido van Rossum · 25 years ago
  100. 5bc51f2 Appropriate overflow checks so that things like sys.maxint*(1,) can't dump core. by Guido van Rossum · 25 years ago