1. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  2. c6e5506 Use Py_VISIT in all tp_traverse methods, instead of traversing manually or by Thomas Wouters · 18 years ago
  3. 72d2067 Remove "static forward" declaration. Move constructors after the type objects. by Martin v. Löwis · 18 years ago
  4. a628621 More low-hanging fruit. Still need to re-arrange some code (or find a better by Anthony Baxter · 18 years ago
  5. 5c170fd Fix some missing checks after PyTuple_New, PyList_New, PyDict_New by Georg Brandl · 18 years ago
  6. 38fff8c Checking in the code for PEP 357. by Guido van Rossum · 18 years ago
  7. 15e6274 Revert backwards-incompatible const changes. by Martin v. Löwis · 18 years ago
  8. 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
  9. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  10. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  11. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  12. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  13. 57c2d93 Add a final permutation step to the tuple hash function. by Raymond Hettinger · 20 years ago
  14. 4ec44e8 Replaced arbitrary addend in tuple_hash with one that is known to generate by Raymond Hettinger · 20 years ago
  15. 41bd022 SF bug #942952: Weakness in tuple hash by Raymond Hettinger · 20 years ago
  16. 6fce78e Restored revision 2.87. by Armin Rigo · 20 years ago
  17. 1c3fd87 PyTuple_New(): vrbl i no longer referenced, so removed it (which kills by Tim Peters · 20 years ago
  18. 5671615 This is the fastest I could get on Intel GCC. I kept the memset() in to clear by Armin Rigo · 20 years ago
  19. 7cdf3e8 memset() hunt continuing. This is a net win. by Armin Rigo · 20 years ago
  20. 435bf58 Make iterators length transparent where possible. by Raymond Hettinger · 20 years ago
  21. 325d169 Eliminate an unnecessary test on a common code path. by Raymond Hettinger · 20 years ago
  22. a6366fe Optimize inner loops for subscript, repeat, and concat. by Raymond Hettinger · 20 years ago
  23. b7d05db Optimize tuple_slice() and make further improvements to list_slice() by Raymond Hettinger · 20 years ago
  24. cb2da43 Extended tuple's C API to include a new function, PyTuple_Pack() that is by Raymond Hettinger · 21 years ago
  25. 686b14d SF bug #730296: Unexpected Changes in list Iterator by Raymond Hettinger · 21 years ago
  26. 2af713c Squashed new compiler wngs about trying to compare pointers to by Tim Peters · 21 years ago
  27. 9928571 SF bug 665835: filter() treatment of str and tuple inconsistent by Raymond Hettinger · 21 years ago
  28. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 21 years ago
  29. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 21 years ago
  30. 5d9113d Implement appropriate __getnewargs__ for all immutable subclassable builtin by Guido van Rossum · 22 years ago
  31. a5c0e6d Add checks for size overflow on list*n, list+list, tuple+tuple. by Guido van Rossum · 22 years ago
  32. bb9c5f5 PyObject_RichCompareBool() already returns -1, 0, or 1, so return its value by Neal Norwitz · 22 years ago
  33. bd9adab Micro-optimization for list_contains. Factored double if test out of the loop. by Raymond Hettinger · 22 years ago
  34. e3a8e7e Call me anal, but there was a particular phrase that was speading to by Guido van Rossum · 22 years ago
  35. 48923c5 Moved special case for tuples from iterobject.c to by Raymond Hettinger · 22 years ago
  36. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  37. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  38. 8b47dff Fix for SF bug 571885 by Jeremy Hylton · 22 years ago
  39. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  40. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  41. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  42. 626d774 PyObject_GC_Del can now be used as a function designator. by Neil Schemenauer · 22 years ago
  43. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 22 years ago
  44. f70590f _PyTuple_Resize(): this dumped core on tuple(globals()) for me. Turns by Guido van Rossum · 23 years ago
  45. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  46. 7b07a41 The endless 460020 bug. by Tim Peters · 23 years ago
  47. 1b8ca0d Rewrite the tuple() docstring to parallel the list() docstring. by Tim Peters · 23 years ago
  48. 9577761 Repair apparent cut'n'pasteo in tuple() docstring. by Tim Peters · 23 years ago
  49. 4b8c0f6 More stuff discovered while writing the simplest of testcases: by Guido van Rossum · 23 years ago
  50. ae960af Make str and tuple types subclassable. by Guido van Rossum · 23 years ago
  51. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  52. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  53. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  54. 0dcea59 _PyTuple_Resize: guard against PyTuple_New() returning NULL, using Tim's by Thomas Wouters · 23 years ago
  55. 4324aa3 Cruft cleanup: Removed the unused last_is_sticky argument from the internal by Tim Peters · 23 years ago
  56. 6a92237 _PyTuple_Resize: take into account the empty tuple. There can be only one. by Thomas Wouters · 23 years ago
  57. d7ed3bf Speed tuple comparisons in two ways: by Tim Peters · 23 years ago
  58. f77bc62 Same treatment as listobject.c: by Guido van Rossum · 24 years ago
  59. 08b53e6 Simplify _PyTuple_Resize by not using the tuple free list and dropping by Neil Schemenauer · 24 years ago
  60. 3cd7604 Correctly cast the return value of realloc. by Martin v. Löwis · 24 years ago
  61. c58dbeb Correctly use realloc return value. Fixes bug #114424. by Martin v. Löwis · 24 years ago
  62. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  63. ba09633 ANSI-fication of the sources. by Fred Drake · 24 years ago
  64. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  65. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  66. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  67. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  68. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  69. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  70. 29dc381 Michael Hudson <mwh21@cam.ac.uk>: by Marc-André Lemburg · 24 years ago
  71. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  72. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  73. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  74. 37b1a26 add list_contains and tuplecontains: efficient implementations of tp_contains by Jeremy Hylton · 24 years ago
  75. 5ce78f8 Patch by Charles G Waldman to avoid a sneaky memory leak in by Guido van Rossum · 24 years ago
  76. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  77. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  78. 0eb55ac Mark Favas was quick to note that the last checkin divides by zero by Guido van Rossum · 25 years ago
  79. 5bc51f2 Appropriate overflow checks so that things like sys.maxint*(1,) can't dump core. by Guido van Rossum · 25 years ago
  80. 68055ce When tracing references, reset the type and size of tuples allocated by Guido van Rossum · 26 years ago
  81. 017f778 Make tuples less hungry -- an extra item was allocated but never used. by Guido van Rossum · 26 years ago
  82. 1bb2687 Slight rearrangement of some code to make it faster, by Vladimir Marangozov. by Guido van Rossum · 26 years ago
  83. 787bdd3 PyTuple_SetItem should require that the tuple's refcnt is one! by Guido van Rossum · 27 years ago
  84. fbbd57e Added _Fini() routines to free up some memory by Guido van Rossum · 27 years ago
  85. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  86. 0969ad2 Better tuple hash function. by Guido van Rossum · 28 years ago
  87. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  88. 441e4ab new debugger symbol names by Guido van Rossum · 28 years ago
  89. 055968c better err checks in resizetuple by Guido van Rossum · 29 years ago
  90. 6f9e433 fix dusty debugging macros by Guido van Rossum · 29 years ago
  91. 5fe6058 a few peephole optimizations by Guido van Rossum · 29 years ago
  92. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  93. 1d5735e Merge back to main trunk by Guido van Rossum · 30 years ago
  94. a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
  95. 615194a Fixed bugs in resizetuple and extended the interface. by Sjoerd Mullender · 31 years ago
  96. 12d12c5 * compile.[ch]: support for lambda() by Guido van Rossum · 31 years ago
  97. 842d2cc intobject.c: Save references to small integers, so that they can be by Sjoerd Mullender · 31 years ago
  98. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  99. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  100. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago