1. f28dd83 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  2. c5007aa final patches from Neil Schemenauer for garbage collection by Jeremy Hylton · 24 years ago
  3. 13634cf This patch addresses two main issues: (1) There exist some non-fatal by Fred Drake · 24 years ago
  4. 4f4b799 Jack Jansen: Use include "" instead of <>; and staticforward declarations by Guido van Rossum · 24 years ago
  5. d7823f2 Vladimir Marangozov: by Guido van Rossum · 24 years ago
  6. ad89bbc Trent Mick: change a few casts for Win64 compatibility. by Guido van Rossum · 24 years ago
  7. eceebb8 Jack Jansen: Moved includes to the top, removed think C support by Guido van Rossum · 24 years ago
  8. 0f774e3 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  9. 7c01468 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  10. d08b4c4 part 2 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  11. d22162b traverse functions should return 0 on success by Jeremy Hylton · 24 years ago
  12. 99a8f90 raise TypeError when PyObject_Get/SetAttr called with non-string name by Jeremy Hylton · 24 years ago
  13. 8caad49 Round 1 of Neil Schemenauer's GC patches: by Jeremy Hylton · 24 years ago
  14. 396f6e0 Fredrik Lundh <effbot@telia.com>: by Fred Drake · 24 years ago
  15. 49ef6dc Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  16. 74042d6 Patch from /F: by Andrew M. Kuchling · 24 years ago
  17. bea47e7 Vladimir MARANGOZOV <Vladimir.Marangozov@inrialpes.fr>: by Marc-André Lemburg · 24 years ago
  18. 29dc381 Michael Hudson <mwh21@cam.ac.uk>: by Marc-André Lemburg · 24 years ago
  19. 5678025 Thomas Wouters <thomas@xs4all.net>: by Fred Drake · 24 years ago
  20. 60bc809 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  21. 07ceb67 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  22. a251ea0 the PyDict_SetItem does not borrow a reference, so we need to decref by Jeremy Hylton · 24 years ago
  23. cb95a14 Patch from Michael Hudson: improve unclear error message by Andrew M. Kuchling · 24 years ago
  24. d4ab4a5 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  25. 90e8147 Marc-Andre Lemburg <mal@lemburg.com>: by Marc-André Lemburg · 24 years ago
  26. 4c7fdfc Trent Mick <trentm@ActiveState.com>: by Fred Drake · 24 years ago
  27. 914a2ed Improve TypeError exception message for list catenation. by Fred Drake · 24 years ago
  28. b6a9ada Michael Hudson <mwh21@cam.ac.uk>: by Fred Drake · 24 years ago
  29. 785d14f Minimal change so I can add the rest of MAL's checkin message: by Fred Drake · 24 years ago
  30. e4315f5 M.-A. Lemburg <mal@lemburg.com>: by Fred Drake · 24 years ago
  31. c18a6f4 Replace PyErr_BadArgument() error in PyInt_AsLong() with "an integer by Guido van Rossum · 24 years ago
  32. b8872e6 Trent Mick: by Guido van Rossum · 24 years ago
  33. c682140 Trent Mick: by Guido van Rossum · 24 years ago
  34. b8f820c The methods islower(), isupper(), isspace(), isdigit() and istitle() by Guido van Rossum · 24 years ago
  35. 03e29f1 Mark Hammond should get his act into gear (his words :-). Zero length by Guido van Rossum · 24 years ago
  36. 42c29aa Fix warning detected by VC++ on assignment of Py_UNICODE to char. by Guido van Rossum · 24 years ago
  37. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  38. 4e751c3 Mark Hammond withdraws his fix -- the size includes the trailing 0 so by Guido van Rossum · 24 years ago
  39. a6edfd9 Mark Hammond: by Guido van Rossum · 24 years ago
  40. ee98e4e Ignore a bunch of generated files. by Barry Warsaw · 24 years ago
  41. 0e4f657 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  42. 37b1a26 add list_contains and tuplecontains: efficient implementations of tp_contains by Jeremy Hylton · 24 years ago
  43. ec5b776 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  44. 3c1bb80 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  45. 9e392e2 potentially useless optimization by Jeremy Hylton · 24 years ago
  46. e92e610 Christian Tismer -- total rewrite on trashcan code. by Guido van Rossum · 24 years ago
  47. 5ce78f8 Patch by Charles G Waldman to avoid a sneaky memory leak in by Guido van Rossum · 24 years ago
  48. 4a3dd2d Fix PR#7 comparisons of recursive objects by Jeremy Hylton · 24 years ago
  49. f0b7b04 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  50. dc742b3 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  51. 8666291 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  52. ba71a24 Simple optimization by Christian Tismer, who gives credit to Lenny by Guido van Rossum · 24 years ago
  53. fd4b957 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  54. 90daa87 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  55. b244f69 Marc-Andre Lemburg: by Guido van Rossum · 24 years ago
  56. 5f8b12f Mark Hammond: by Guido van Rossum · 24 years ago
  57. 5db862d Skip Montanaro: add string precisions to calls to PyErr_Format by Guido van Rossum · 24 years ago
  58. ba47704 Conrad Huang points out that "if (0 < ch < 256)", while legal C, by Guido van Rossum · 24 years ago
  59. 34888ed Fredrik Lundh: eliminate a MSVC compiler warning. by Guido van Rossum · 24 years ago
  60. 9e896b3 Marc-Andre's third try at this bulk patch seems to work (except that by Guido van Rossum · 24 years ago
  61. 2ea3e14 Some blank lines. by Guido van Rossum · 24 years ago
  62. a12c7a7 Add PyDict_Copy() function to C API for dicts. It returns a new by Jeremy Hylton · 24 years ago
  63. b7a40ba MBCS codecs. (Win32 only.) By Mark Hammond. by Guido van Rossum · 24 years ago
  64. 13ff8eb Christian Tismer: by Guido van Rossum · 24 years ago
  65. 51ac580 On 17-Mar-2000, Marc-Andre Lemburg said: by Barry Warsaw · 24 years ago
  66. ee70ad1 Checking in the new, improve file.writelines() code. by Guido van Rossum · 24 years ago
  67. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 24 years ago
  68. 96a45ad Fix typo in replace() detected by Mark Hammond and fixed by Marc-Andre. by Guido van Rossum · 24 years ago
  69. 403d68b Add sq_contains implementation. by Guido van Rossum · 24 years ago
  70. ef93b87 Added Christian Tismer's patch to allow list.append(a,b,c) back -- by Guido van Rossum · 24 years ago
  71. 4aa1e63 Marc-AAndre Lemburg: add new unicode files by Guido van Rossum · 24 years ago
  72. 4c08d55 Many changes for Unicode, by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  73. d57fd91 Unicode implementation by Marc-Andre Lemburg based on original code by by Guido van Rossum · 24 years ago
  74. 603484d Unicode character type helpers, written by Marc-Andre Lemburg. by Guido van Rossum · 24 years ago
  75. 9611e0b Patch by Moshe Zadka: remove the string special case in by Guido van Rossum · 24 years ago
  76. 9284a57 Patch by Moshe Zadka: move the string special case from abstract.c here. by Guido van Rossum · 24 years ago
  77. bf32583 string_join(): Fix memory leaks discovered by Charles Waldman (and a by Barry Warsaw · 24 years ago
  78. 43713e5 Massive patch by Skip Montanaro to add ":name" to as many by Guido van Rossum · 24 years ago
  79. ee28c3a Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This adds by Guido van Rossum · 24 years ago
  80. 46c6b20 Patch by Mozhe Zadka, for __contains__ (overloading 'in'). This by Guido van Rossum · 24 years ago
  81. c00a938 OKOK, Greg's right, I should've used the :name option in the argument by Guido van Rossum · 24 years ago
  82. 4aa24f9 Made all list methods use PyArg_ParseTuple(), for more accurate diagnostics. by Guido van Rossum · 24 years ago
  83. 0f223d2 Allow using long integers as arguments to PyObject_GetItem(), _SetItem(), by Andrew M. Kuchling · 24 years ago
  84. 52fccfd dict_has_key(): Accept only one parameter. PR#210 reported by by Fred Drake · 24 years ago
  85. fb4574e In response to one particular complaint on edu-sig, change some error by Guido van Rossum · 24 years ago
  86. 1991ddc Make multiplying a sequence by a long integer (5L * 'b') legal by Andrew M. Kuchling · 24 years ago
  87. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 24 years ago
  88. 687ef6e On Linux, one sometimes sees spurious errors after interrupting by Guido van Rossum · 25 years ago
  89. 57072eb Implement the other easy thing: repr() of a float now uses %.17g, by Guido van Rossum · 25 years ago
  90. 121ee27 long_format(): Now takes a third parameter, addL; iff true, a by Fred Drake · 25 years ago
  91. 153a27c do_strip(): Fixed cut-and-paste error; this function should check for by Barry Warsaw · 25 years ago
  92. 226ae6c Mainlining the string_methods branch. See branch revision log by Barry Warsaw · 25 years ago
  93. 2c7b8fe Fix PR#66. Solution: add error checking around l_divmod() calls in long_pow(). by Guido van Rossum · 25 years ago
  94. 42636dc Fix for PR#98 (Adrian Eyre) -- in instancemethod_repr, the funcname by Guido van Rossum · 25 years ago
  95. e13ff2e Patch by Tim Peters fixing PR#88: by Guido van Rossum · 25 years ago
  96. 1a23c24 Patch by Tim Peters fixing PR#89: by Guido van Rossum · 25 years ago
  97. ff7e83d Patch by Mark Hammond to avoid certain header files on Windows/CE. by Guido van Rossum · 25 years ago
  98. 4574f23 PyBuffer_New(): Raise ValueError if size is negative (the other by Fred Drake · 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