1. 9475a23 Enable GC for new-style instances. This touches lots of files, since by Guido van Rossum · 23 years ago
  2. 52e0717 Give the internal immutable list type .extend and .pop methods (they by Tim Peters · 23 years ago
  3. e83c00e Use new GC API. by Neil Schemenauer · 23 years ago
  4. e3eb1f2 Patch #427190: Implement and use METH_NOARGS and METH_O. by Martin v. Löwis · 23 years ago
  5. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  6. 6ee4234 SF bug #439104: Tuple richcompares has code-typo. by Tim Peters · 23 years ago
  7. a725959 SF bug 433228: repr(list) woes when len(list) big. by Tim Peters · 23 years ago
  8. 1af03e9 Change list.extend() error msgs and NEWS to reflect that list.extend() by Tim Peters · 23 years ago
  9. 442914d Cruft cleanup: removed the #ifdef'ery in support of compiling to allow by Tim Peters · 23 years ago
  10. 65b8b84 roundupsize() and friends: fiddle over-allocation strategy for list resizing. by Tim Peters · 23 years ago
  11. b86c549 Fix core dump whenever PyList_Reverse() was called. by Guido van Rossum · 23 years ago
  12. 65e1cea Convert to rich comparisons: by Guido van Rossum · 24 years ago
  13. db60bb5 fix leak by Jeremy Hylton · 24 years ago
  14. 0e76ab2 Use METH_VARARGS instead of "1" in list method table. by Tim Peters · 24 years ago
  15. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  16. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  17. e289e0b Support for the in-place operations introduced by augmented assignment. Only by Thomas Wouters · 24 years ago
  18. e979160 Added include for limits.h by Jack Jansen · 24 years ago
  19. a584664 Check for overflow in list object insertion and raise OverflowError. by Trent Mick · 24 years ago
  20. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  21. 467a67e Fix in PyList_New(). With GC enabled and when out of memory, by Vladimir Marangozov · 24 years ago
  22. 03657cf replace PyXXX_Length calls with PyXXX_Size calls by Jeremy Hylton · 24 years ago
  23. a2f5511 ANSI-fication of the sources. by Fred Drake · 24 years ago
  24. 4cc6ac7 Neil Schemenauer: small fixes for GC by Guido van Rossum · 24 years ago
  25. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  26. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  27. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  28. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  29. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  30. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  31. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  32. 914a2ed Improve TypeError exception message for list catenation. by Fred Drake · 24 years ago
  33. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  34. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  35. 37b1a26 add list_contains and tuplecontains: efficient implementations of tp_contains by Jeremy Hylton · 24 years ago
  36. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  37. ef93b87 Added Christian Tismer's patch to allow list.append(a,b,c) back -- by Guido van Rossum · 24 years ago
  38. c00a938 OKOK, Greg's right, I should've used the :name option in the argument by Guido van Rossum · 24 years ago
  39. 4aa24f9 Made all list methods use PyArg_ParseTuple(), for more accurate diagnostics. by Guido van Rossum · 24 years ago
  40. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  41. fa71701 When deallocating a list, DECREF the items from the end back to the start. by Guido van Rossum · 25 years ago
  42. 9bcd1d7 Improve text of some error messages, as suggested by Sean Reifschneider. by Guido van Rossum · 25 years ago
  43. 3aa23fd Jim Ahlstrom patch: cutoff should be a long for machines with 16-bit by Guido van Rossum · 26 years ago
  44. dedf6d6 listextend(): New method which implements L.extend(L2). by Barry Warsaw · 26 years ago
  45. 2ccaf6f Remove a redundant check from list_slice() and list_ass_slice(). by Guido van Rossum · 26 years ago
  46. 3dd7f3f Added doc strings for methods and a new pop() method. by Guido van Rossum · 26 years ago
  47. 4281258 Minor cleanup by Tim after my changes: by Guido van Rossum · 26 years ago
  48. 4c4e7df Tim's latest, with some of my changes (also a TP suggestion) added: by Guido van Rossum · 26 years ago
  49. a119c0d Tim's revision of the previous patch. He also added some sparts to by Guido van Rossum · 26 years ago
  50. ae621ff Guard against changes in the list size during a compare or sort. by Guido van Rossum · 26 years ago
  51. 9be6283 Tim's quicksort on May 25. by Guido van Rossum · 26 years ago
  52. ed7adcf Tim's quicksort on May 13. by Guido van Rossum · 26 years ago
  53. b705764 Tim's quicksort on May 10. by Guido van Rossum · 26 years ago
  54. e32907d Get rid of the unused ifdefed-out old sort code. by Guido van Rossum · 26 years ago
  55. 82e6a8f Quicksort retuned by Tim Peters. by Guido van Rossum · 26 years ago
  56. fb376de Use Py_Repr{Enter,Leave} to display recursive lists in finite space. by Guido van Rossum · 26 years ago
  57. 044b9dc Add back some safeguards on the index elements that were lost in the by Guido van Rossum · 26 years ago
  58. 24e62e2 Modified quicksort by Raymund Galvin, after studying the GNU libg++ by Guido van Rossum · 27 years ago
  59. a27d112 Rename roundup() to roundupsize(), as there's a macro roundup() in the by Guido van Rossum · 27 years ago
  60. 5d8123f Reordered list of methods to hopefully put the most frequently used by Guido van Rossum · 27 years ago
  61. c8b6df9 PyObject_Compare can raise an exception now. by Guido van Rossum · 27 years ago
  62. c0b618a Quickly renamed the last directory. by Guido van Rossum · 27 years ago
  63. 2095d24 Tweaks to keep the Microsoft compiler quiet. by Guido van Rossum · 27 years ago
  64. 19700b6 Add casts to CMPERROR macro to silence SunPro compiler warnings about by Guido van Rossum · 27 years ago
  65. cc15b42 Change comment about MINSIZE -- 10 is optimal for Python. by Guido van Rossum · 28 years ago
  66. 3176bb1 Some more tuning of quicksort: use pointers instead of indexing. by Guido van Rossum · 28 years ago
  67. 3f236de Added new quicksort implementation, tailored to sorting arrays of by Guido van Rossum · 28 years ago
  68. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  69. 929f1b8 Use pre-created string objects for most common exceptions by Guido van Rossum · 28 years ago
  70. 1311e3c args to call_object must be tuple or NULL by Guido van Rossum · 29 years ago
  71. 5fe6058 a few peephole optimizations by Guido van Rossum · 29 years ago
  72. 295d171 explicitly init flags in methodlists by Guido van Rossum · 29 years ago
  73. a46d51d round up list item counts to improve realloc performance by Guido van Rossum · 30 years ago
  74. 7874d1f Fix NULL dereference in case of out-of-memory condition by Jack Jansen · 30 years ago
  75. b0fe3a9 added reverselist; free recycling bin on error exit by Guido van Rossum · 30 years ago
  76. ae7bf1a fix reentrancy bug in slice assignment by Guido van Rossum · 30 years ago
  77. 6610ad9 Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  78. d7047b3 Lots of minor changes. Note for mappingobject.c: the hash table pointer by Guido van Rossum · 30 years ago
  79. 6cd2fe0 Correct problems found by THINK C 6.0 by Guido van Rossum · 30 years ago
  80. a3d78fb * posixmodule.c: added set{uid,gid}. by Guido van Rossum · 31 years ago
  81. dc4b93d * listobject.c (list_ass_slice): XDECREF instead of DECREF so by Guido van Rossum · 31 years ago
  82. a9c3c22 * Extended X interface: pixmap objects, colormap objects visual objects, by Sjoerd Mullender · 31 years ago
  83. 1fc238a Minor fixes / changes for Mac compatibility. by Guido van Rossum · 31 years ago
  84. 234f942 * Added gmtime/localtime/mktime and SYSV timezone globals to timemodule.c. by Guido van Rossum · 31 years ago
  85. bf80e54 * stdwinmodule.c: various new commands: setwin{pos,size}, by Guido van Rossum · 32 years ago
  86. 34679b7 * Added Fixcprt.py: script to fix copyright message. by Guido van Rossum · 32 years ago
  87. a2b7f40 * Configure.py: use #!/usr/local/bin/python by Guido van Rossum · 32 years ago
  88. 7066dd7 * Makefile: added IMGFILE; moved some stuff around. by Guido van Rossum · 32 years ago
  89. ba3690c Remove outdated warning in comments. by Guido van Rossum · 32 years ago
  90. 1e28e5e * renamed malloc.h mymalloc.h, and added MALLARG as the type of the by Guido van Rossum · 32 years ago
  91. ff4949e * Makefile: cosmetics by Guido van Rossum · 32 years ago
  92. e10a19e listobject.c: added optional cmp function to list.sort(). by Guido van Rossum · 32 years ago
  93. bab9d03 Copyright for 1992 added by Guido van Rossum · 32 years ago
  94. fa3da8a Include modsupport.h for getargs(). by Guido van Rossum · 33 years ago
  95. 32dffaa Fix assignment of a list to a slice of itself. by Guido van Rossum · 33 years ago
  96. 87e7ea7 Use new exceptions. by Guido van Rossum · 33 years ago
  97. e6f7d18 Added count() method. Changed some conditional INCREFs into XINCREFs. by Guido van Rossum · 33 years ago
  98. 9093361 printobject now returns an error code by Guido van Rossum · 33 years ago
  99. bfe14c5 Add warning about Lambert's bug. by Guido van Rossum · 33 years ago
  100. 4a450d0 Swapped list_ass_item and list_ass_slice to satisfy Standard C. by Guido van Rossum · 33 years ago