1. 0e7a632 Bypass set specific optimizations for set and frozenset subclasses. by Raymond Hettinger · 19 years ago
  2. 6d121f1 Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 19 years ago
  3. de33c62 Silence compiler warning by Raymond Hettinger · 19 years ago
  4. 4da5bf6 Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict. by Raymond Hettinger · 19 years ago
  5. 0922d71 SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 19 years ago
  6. db67aef Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses. by Raymond Hettinger · 19 years ago
  7. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 19 years ago
  8. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 19 years ago
  9. 9fdfadb SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 19 years ago
  10. 37e6502 Minor change in int() docstring for proper spacing. by Gustavo Niemeyer · 19 years ago
  11. a443bc8 Mention in the int() docstring that a base zero has meaning, as by Gustavo Niemeyer · 19 years ago
  12. 5399910 For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. by Raymond Hettinger · 19 years ago
  13. eabc0e8 Typo fix by Andrew M. Kuchling · 19 years ago
  14. 9c14ffb Port Georg's dictobject.c fix keys that were tuples got unpacked on the way to setting a KeyError (svn revision 52535, sf bug by Raymond Hettinger · 19 years ago
  15. 0c85086 Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug 1456209). by Raymond Hettinger · 19 years ago
  16. f31e175 Eliminate two redundant calls to PyObject_Hash(). by Raymond Hettinger · 19 years ago
  17. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 19 years ago
  18. 056dac1 Bug #1067760: Deprecate passing floats to file.seek. by Martin v. Löwis · 19 years ago
  19. 3a62404 Correctly forward exception in instance_contains(). by Martin v. Löwis · 19 years ago
  20. 7b932da Fix refleak by Neal Norwitz · 19 years ago
  21. b9f4ad3 Bug #1576657: when setting a KeyError for a tuple key, make sure that by Georg Brandl · 19 years ago
  22. ab77227 Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either. by Neal Norwitz · 19 years ago
  23. e7e4e2d Prevent crash if alloc of garbage fails. Found by Typo.pl. by Neal Norwitz · 19 years ago
  24. a5ccda9 Fix warnings with HP's C compiler. It doesn't recognize that infinite by Neal Norwitz · 19 years ago
  25. df08f0b WindowsError.str should display the windows error code, by Thomas Heller · 19 years ago
  26. 2c1375c Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 19 years ago
  27. b3f3755 Fix wording in comment by Andrew M. Kuchling · 19 years ago
  28. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 19 years ago
  29. 820d6ac Fix integer negation and absolute value to not rely by Martin v. Löwis · 19 years ago
  30. 3267d28 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 19 years ago
  31. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 19 years ago
  32. f6aa86e Allow exceptions to be directly sliced again by Brett Cannon · 19 years ago
  33. ca2ca79 Remove the __unicode__ method from exceptions. Allows unicode() to be called by Brett Cannon · 19 years ago
  34. c563a1c Fix refcounts and add error checks. by Raymond Hettinger · 19 years ago
  35. 38f6237 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 19 years ago
  36. a22975f Fix SF bug #1546288, crash in dict_equal. by Neal Norwitz · 19 years ago
  37. c10c9d0 "Conceptual" merge of rev 51711 from the 2.5 branch. by Tim Peters · 19 years ago
  38. a0c95fa Fix endcase for str.rpartition() by Raymond Hettinger · 19 years ago
  39. 2b3666f Make sure memory is properly cleaned up in file_init. by Brett Cannon · 19 years ago
  40. 348dc88 Reverting the patch that tried to fix the issue whereby x**2 raises by Alex Martelli · 19 years ago
  41. 20362a8 x**2 should about equal x*x (including for a float x such that the result is by Alex Martelli · 19 years ago
  42. 17753ec Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 19 years ago
  43. 076d1e0 Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 19 years ago
  44. 7fd9607 Move initialization to after the asserts for non-NULL values. by Neal Norwitz · 19 years ago
  45. 6cbb726 Move initialization of interned strings to before allocating the by Neal Norwitz · 19 years ago
  46. 271a868 Subclasses of int/long are allowed to define an __index__. by Neal Norwitz · 19 years ago
  47. 26a07b5 Fix refleak introduced in rev. 51248. by Georg Brandl · 19 years ago
  48. 3a45779 Correct an accidentally removed previous patch. by Marc-André Lemburg · 19 years ago
  49. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 19 years ago
  50. af33f2d Can't return NULL from a void function. If there is a memory error, by Neal Norwitz · 19 years ago
  51. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 19 years ago
  52. b09f4f5 Handle a whole lot of failures from PyString_FromInternedString(). by Neal Norwitz · 19 years ago
  53. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 19 years ago
  54. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 19 years ago
  55. b88cfad Check return of PyMem_MALLOC (garbage) is non-NULL. by Neal Norwitz · 19 years ago
  56. 421c131 Whoops, how did that get in there. :-) Revert all the parts of 51227 that were not supposed to go it. Only Modules/_ctypes/cfields.c was supposed to be changed by Neal Norwitz · 19 years ago
  57. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 19 years ago
  58. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 19 years ago
  59. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 19 years ago
  60. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 19 years ago
  61. ab1049c memcmp() can return values other than -1, 0, and +1 but tp_compare must not. by Thomas Heller · 19 years ago
  62. b0061c8 Remove "non-mapping" and "non-sequence" from TypeErrors raised by by Georg Brandl · 19 years ago
  63. 0067b5f Typo fixes by Andrew M. Kuchling · 19 years ago
  64. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 19 years ago
  65. 4538193 Fix bug caused by first decrefing, then increfing. by Georg Brandl · 19 years ago
  66. 7a36f5f SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 19 years ago
  67. c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. by Neal Norwitz · 19 years ago
  68. 5a51bf5 typo fix by Andrew M. Kuchling · 19 years ago
  69. a7edb11 Whitespace normalization by Neal Norwitz · 19 years ago
  70. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 19 years ago
  71. 52740be [Bug #1414697] Change docstring of set/frozenset types to specify that the contents are unique. Raymond, please feel free to edit or revert. by Andrew M. Kuchling · 19 years ago
  72. 101bac2 Closure can't be NULL at this point since we know it's a tuple. by Neal Norwitz · 19 years ago
  73. c09efa8 Move the initialization of size_a down below the check for a being NULL. by Neal Norwitz · 19 years ago
  74. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 19 years ago
  75. 1adbb50 Move the initialization of some pointers earlier. The problem is by Neal Norwitz · 19 years ago
  76. 48808a1 Add some asserts that we got good params passed by Neal Norwitz · 19 years ago
  77. 04e39ec otherset is known to be non-NULL based on checks before and DECREF after. by Neal Norwitz · 19 years ago
  78. b337bb5 Stop INCREFing name, then checking if it's NULL. name (f_name) should never by Neal Norwitz · 19 years ago
  79. ee4cc69 PyFunction_SetDefaults() is documented as taking None or a tuple. by Neal Norwitz · 19 years ago
  80. fc28e0d Handle a NULL name properly. by Neal Norwitz · 19 years ago
  81. 4b0a315 Use sizeof(buffer) instead of duplicating the constants to ensure they won't by Neal Norwitz · 19 years ago
  82. ef02b9e a & b were dereffed above, so they are known to be valid pointers. by Neal Norwitz · 19 years ago
  83. 7e49c6e Fix uninitialized memory read reported by Valgrind when running doctest. by Neal Norwitz · 19 years ago
  84. 74c3ea0 Fix build problems with the platform SDK on windows. It is not sufficient to test for the C compiler version when determining if we have the secure CRT from microsoft. Must test with an undocumented macro, __STDC_SECURE_LIB__ too. by Kristján Valur Jónsson · 19 years ago
  85. d5cfa54 Put method-wrappers into trashcan. Fixes #927248. by Martin v. Löwis · 19 years ago
  86. 0f415dc Another problem reported by Coverity. Backport candidate. by Neal Norwitz · 19 years ago
  87. b114984 Fix refleak by Neal Norwitz · 19 years ago
  88. 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 19 years ago
  89. 0f2783c Use Py_ssize_t by Neal Norwitz · 19 years ago
  90. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 19 years ago
  91. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 19 years ago
  92. ea3912b If a classic class defined a __coerce__() method that just returned its two by Brett Cannon · 19 years ago
  93. de4c78a Initialize the type object so pychecker can't crash the interpreter. by Neal Norwitz · 19 years ago
  94. f608317 Fix the CRT argument error handling for VisualStudio .NET 2005. Install a CRT error handler and disable the assertion for debug builds. This causes CRT to set errno to EINVAL. by Kristján Valur Jónsson · 19 years ago
  95. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 19 years ago
  96. a00c0b9 Don't leak the list object if there's an error allocating the item storage. Backport candidate by Neal Norwitz · 19 years ago
  97. 7d5b6e8 f_code can't be NULL based on Frame_New and other code that derefs it. by Neal Norwitz · 19 years ago
  98. 8e6675a Update doc to make it agree with code. Bottom factor out some common code. by Neal Norwitz · 19 years ago
  99. 9a8ae8f Suppress warning on MacOSX about possible use before set of proc. by Skip Montanaro · 19 years ago
  100. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 19 years ago