1. 73a088e Don't be so hasty. If PyInt_AsLong() raises an error, don't set ValueError. by Jeremy Hylton · 22 years ago
  2. f20fcf9 Complain if __len__() returns < 0, just like classic classes. by Jeremy Hylton · 22 years ago
  3. 206d8f8 Silly typo. Not sure how that got in. by Michael W. Hudson · 22 years ago
  4. f0d777c A few days ago, Guido said (in the thread "[Python-Dev] Python by Michael W. Hudson · 22 years ago
  5. 330f9e9 More sort cleanup: Moved the special cases from samplesortslice into by Tim Peters · 22 years ago
  6. 0fe977c binarysort() cleanup: Documented the key invariants, explained why they by Tim Peters · 22 years ago
  7. 326b448 listreverse(): Don't call the new reverse_slice unless the list by Tim Peters · 22 years ago
  8. a8c974c Cleanup yielding a small speed boost: before rich comparisons were by Tim Peters · 22 years ago
  9. 3b01a12 Trimmed trailing whitespace. by Tim Peters · 22 years ago
  10. 8e2e7ca Cleanup: Define one internal utility for reversing a list slice, and by Tim Peters · 22 years ago
  11. d1fedb6 Remove extraneous semicolon. by Jeremy Hylton · 22 years ago
  12. 938ace6 staticforward bites the dust. by Jeremy Hylton · 22 years ago
  13. ca5ed5b Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  14. 86d593e Remove the next() method -- one is supplied automatically by by Guido van Rossum · 22 years ago
  15. 2147df7 Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  16. 613bed3 Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  17. 6b6272c Whitespace normalization. by Guido van Rossum · 22 years ago
  18. 86103ae Make StopIteration a sink state. This is done by clearing out the by Guido van Rossum · 22 years ago
  19. 719841e The object returned by tp_new() may not have a tp_init. by Jeremy Hylton · 22 years ago
  20. 5086e49 Make list_iter() really static. by Guido van Rossum · 22 years ago
  21. 03013a0 valid_identifier(): use an unsigned char* so that isalpha() will do by Guido van Rossum · 22 years ago
  22. 58cf361 docompare(): Another reasonable optimization from Jonathan Hogg for the by Tim Peters · 22 years ago
  23. 7a1f917 WINDOWS_LEAN_AND_MEAN: There is no such symbol, although a very few by Tim Peters · 22 years ago
  24. b6d29b7 Undef MIN and MAX before defining them, to avoid warnings on certain platforms. by Guido van Rossum · 22 years ago
  25. a4b4c3b Don't declare a function with staticforward. by Jeremy Hylton · 22 years ago
  26. f2a0473 docompare(): Use PyTuple_New instead of Py_BuildValue to build compare's by Tim Peters · 22 years ago
  27. df3f793 Extend function() to support an optional closure argument. by Jeremy Hylton · 22 years ago
  28. 3459251 object.h special-build macro minefield: renamed all the new lexical by Tim Peters · 22 years ago
  29. 889f61d Documented PYMALLOC_DEBUG. This completes primary coverage of all the by Tim Peters · 22 years ago
  30. 7c321a8 The Py_REF_DEBUG/COUNT_ALLOCS/Py_TRACE_REFS macro minefield: added by Tim Peters · 22 years ago
  31. c6a3ff6 SF bug 578752: COUNT_ALLOCS vs heap types by Tim Peters · 22 years ago
  32. 4be93d0 Rearranged and added comments to object.h, to clarify many things by Tim Peters · 22 years ago
  33. a6269a8 Removed 3 unlikely #includes that were only needed for the non-gc flavor by Tim Peters · 22 years ago
  34. 803526b Trashcan cleanup: Now that cyclic gc is always there, the trashcan by Tim Peters · 22 years ago
  35. 943382c Removed WITH_CYCLE_GC #ifdef-ery. Holes: by Tim Peters · 22 years ago
  36. 6238d2b Patch #569753: Remove support for WIN16. by Martin v. Löwis · 22 years ago
  37. 5a04aec Fix SF bug 546434 -- buffer slice type inconsistent. by Raymond Hettinger · 22 years ago
  38. ab5dae3 Fix SF bug 572567: Memory leak in object comparison. by Raymond Hettinger · 22 years ago
  39. 8b47dff Fix for SF bug 571885 by Jeremy Hylton · 22 years ago
  40. 0ae0c07 SF 569257 -- Name mangle double underscored variable names in __slots__. by Raymond Hettinger · 22 years ago
  41. 9c14bad Fix the bug described in by Michael W. Hudson · 22 years ago
  42. 6351757 Patch from SF bug 570483 (Tim Northover). by Guido van Rossum · 22 years ago
  43. b1e8154 About the new but unreferenced new_class, Guido sez: by Michael W. Hudson · 22 years ago
  44. bea18cc SF patch 568629 by Oren Tirosh: types made callable. by Guido van Rossum · 22 years ago
  45. 59e6c53 Inexplicably, recurse_down_subclasses() was comparing the object by Guido van Rossum · 22 years ago
  46. 2c2e827 Missed one use of new PyDoc_STRVAR macro by Neal Norwitz · 22 years ago
  47. 1f68fc7 SF bug # 493951 string.{starts,ends}with vs slices by Neal Norwitz · 22 years ago
  48. 4178515 SF # 533070 Silence AIX C Compiler Warnings by Neal Norwitz · 22 years ago
  49. e7b8ecf Major cleanup operation: whenever there's a call that looks for an by Guido van Rossum · 22 years ago
  50. 16b93b3 Fix for SF bug 532646. This is a little simpler than what Neal by Guido van Rossum · 22 years ago
  51. 51290d3 SF # 561244 Micro optimizations by Neal Norwitz · 22 years ago
  52. 20e7213 Fix typo in exception message by Neal Norwitz · 22 years ago
  53. 35fc760 SF #561244 Micro optimizations by Neal Norwitz · 22 years ago
  54. 14f8b4c Patch #568124: Add doc string macros. by Martin v. Löwis · 22 years ago
  55. 09638c1 Hopefully this addresses the remaining issues of SF bugs 459235 and by Guido van Rossum · 22 years ago
  56. 65ce6de Rearrange the #ifndef WITHOUT_COMPLEX so it can be picked up from pyconfig.h. by Guido van Rossum · 22 years ago
  57. 589dc93 Fix for problem reported by Neal Norwitz. Tighten up calculation of by Michael W. Hudson · 22 years ago
  58. 75a20b1 Fold remaining long lines. by Guido van Rossum · 22 years ago
  59. 5efaf7e This is my nearly two year old patch by Michael W. Hudson · 22 years ago
  60. cab0580 Undo the last chunk of the previous patch, putting back a useful by Guido van Rossum · 22 years ago
  61. a386209 In the recent python-dev thread "Bizarre new test failure", we by Guido van Rossum · 22 years ago
  62. 2309498 Three's a charm: yet another fix for SF bug 551412. Thinking again by Guido van Rossum · 22 years ago
  63. 478d47a Close SF bug 563740. complex() now finds __complex__() in new style classes. by Raymond Hettinger · 22 years ago
  64. 56f46f8 Pyrangeiter_Type && range_iter should be static by Neal Norwitz · 22 years ago
  65. c4c453f Skip Montanaro's patch, SF 559833, exposing xrange type in builtins. by Raymond Hettinger · 22 years ago
  66. 48165d4 SF 564601 adding rangeiterobject to make xrange() iterate like range(). by Raymond Hettinger · 22 years ago
  67. aee2d5f Better isinstance error message. by Thomas Heller · 22 years ago
  68. 9923ffe Address SF bug 519621: slots weren't traversed by GC. by Guido van Rossum · 22 years ago
  69. e53e7a2 Inverted test for small speedup by Raymond Hettinger · 22 years ago
  70. ed3e09f Add a docstring to the module type. by Guido van Rossum · 22 years ago
  71. c3a787e Surprising fix for SF bug 563060: module can be used as base class. by Guido van Rossum · 22 years ago
  72. b65c65b Address the residual issue with the fix for SF 551412 in by Guido van Rossum · 22 years ago
  73. 93b2cc4 A bogus assert in the new listiter code prevented starting Python in a by Tim Peters · 22 years ago
  74. 14bd6de SF 560736. Optimize list iteration by filling the tp_iter slot. by Raymond Hettinger · 22 years ago
  75. 3f8dae7 Fix typo by Neal Norwitz · 22 years ago
  76. a407300 Implement the intention of SF patch 472523 (but coded differently). by Guido van Rossum · 22 years ago
  77. 32a7e7f Change name from string to basestring by Neal Norwitz · 22 years ago
  78. 4164439 Fix a possible segfault. Found be Neal Norvitz. by Marc-André Lemburg · 22 years ago
  79. 4da6fd6 Fix for bug [ 561796 ] string.find causes lazy error by Marc-André Lemburg · 22 years ago
  80. 9fc8a29 Fix for SF bug 551412. When _PyType_Lookup() is called on a type by Guido van Rossum · 22 years ago
  81. cacfc07 - A new type object, 'string', is added. This is a common base type by Guido van Rossum · 22 years ago
  82. 9ee4b94 Add a safeguard against setting the class to something with a by Guido van Rossum · 22 years ago
  83. bf9cb3f Use function instead of macro spellings for PyObject_memorystuff. by Tim Peters · 22 years ago
  84. d4e5be5 Closes: #556025 seg fault when doing list(xrange(1e9)) by Neal Norwitz · 22 years ago
  85. 4be55b5 file_doc: Add some description of the U mode character, but only when by Barry Warsaw · 22 years ago
  86. 0ebac97 Patch 549187. Improve string formatting error message. by Raymond Hettinger · 22 years ago
  87. 4402241 Jim Fulton reported a segfault in dir(). A heavily proxied object by Guido van Rossum · 22 years ago
  88. 775c11f Add #ifdef PY_USING_UNICODE sections, so that by Walter Dörwald · 22 years ago
  89. e452659 Patch #551410: Implement tp_getiter. by Martin v. Löwis · 22 years ago
  90. 01f94bd Patch #552433: Special-case tuples. Avoid sub-type checking for lists. by Martin v. Löwis · 22 years ago
  91. 4ce71f7 PyObject_Realloc(): If a small block is shrinking, bite the expense of by Tim Peters · 22 years ago
  92. d901832 Remove old deprecated features from the xrange object. by Fred Drake · 22 years ago
  93. edb51bb Fix attribute access for the xrange objects. The tp_getattr and tp_getattro by Fred Drake · 22 years ago
  94. 71390a9 clarify message when raising TypeError to indicate that float() accepts by Skip Montanaro · 22 years ago
  95. 29c0afc Just added comments, and cleared some XXX questions, related to int by Tim Peters · 22 years ago
  96. 449b5a8 _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt, by Tim Peters · 22 years ago
  97. 5de9842 Repair widespread misuse of _PyString_Resize. Since it's clear people by Tim Peters · 22 years ago
  98. 602f740 SF patch 549375: Compromise PyUnicode_EncodeUTF8 by Tim Peters · 22 years ago
  99. 7dab242 - New builtin function enumerate(x), from PEP 279. Example: by Guido van Rossum · 22 years ago
  100. 517c7d4 PyNumber_CoerceEx: this took a shortcut (not doing anything) when the by Guido van Rossum · 22 years ago