1. 19d76c5 Remove __unicode__ method so that ``unicode(BaseException)`` succeeds. by Brett Cannon · 18 years ago
  2. 8de403a Backport rev. 51798 from trunk: fix setobject.c refcounts and error checks. by Georg Brandl · 18 years ago
  3. ecab623 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 18 years ago
  4. fe50f8e Backport 51669: Make sure memory is properly cleaned up in file_init (even though this should not be able to happen since we already parsed the args) by Neal Norwitz · 18 years ago
  5. 29a5fdb Fix str.rpartition(sep) when sep is not found in str. by Neal Norwitz · 18 years ago
  6. d3da7d3 Fix SF bug #1546288, crash in dict_equal by Neal Norwitz · 18 years ago
  7. cbdd350 i_divmod(): As discussed on Python-Dev, changed the overflow by Tim Peters · 18 years ago
  8. 19c35bb - Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 18 years ago
  9. 47f0ffa Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 18 years ago
  10. 3ba2478 Move initialization of interned strings to before allocating the by Neal Norwitz · 18 years ago
  11. 271a868 Subclasses of int/long are allowed to define an __index__. by Neal Norwitz · 18 years ago
  12. 26a07b5 Fix refleak introduced in rev. 51248. by Georg Brandl · 18 years ago
  13. 3a45779 Correct an accidentally removed previous patch. by Marc-André Lemburg · 18 years ago
  14. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  15. af33f2d Can't return NULL from a void function. If there is a memory error, by Neal Norwitz · 18 years ago
  16. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 18 years ago
  17. b09f4f5 Handle a whole lot of failures from PyString_FromInternedString(). by Neal Norwitz · 18 years ago
  18. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  19. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  20. b88cfad Check return of PyMem_MALLOC (garbage) is non-NULL. by Neal Norwitz · 18 years ago
  21. 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 · 18 years ago
  22. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
  23. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 18 years ago
  24. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  25. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  26. ab1049c memcmp() can return values other than -1, 0, and +1 but tp_compare must not. by Thomas Heller · 18 years ago
  27. b0061c8 Remove "non-mapping" and "non-sequence" from TypeErrors raised by by Georg Brandl · 18 years ago
  28. 0067b5f Typo fixes by Andrew M. Kuchling · 18 years ago
  29. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 18 years ago
  30. 4538193 Fix bug caused by first decrefing, then increfing. by Georg Brandl · 18 years ago
  31. 7a36f5f SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 18 years ago
  32. c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. by Neal Norwitz · 18 years ago
  33. 5a51bf5 typo fix by Andrew M. Kuchling · 18 years ago
  34. a7edb11 Whitespace normalization by Neal Norwitz · 18 years ago
  35. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 18 years ago
  36. 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 · 18 years ago
  37. 101bac2 Closure can't be NULL at this point since we know it's a tuple. by Neal Norwitz · 18 years ago
  38. c09efa8 Move the initialization of size_a down below the check for a being NULL. by Neal Norwitz · 18 years ago
  39. e1fdb32 Handle allocation failures gracefully. Found with failmalloc. by Neal Norwitz · 18 years ago
  40. 1adbb50 Move the initialization of some pointers earlier. The problem is by Neal Norwitz · 18 years ago
  41. 48808a1 Add some asserts that we got good params passed by Neal Norwitz · 18 years ago
  42. 04e39ec otherset is known to be non-NULL based on checks before and DECREF after. by Neal Norwitz · 18 years ago
  43. b337bb5 Stop INCREFing name, then checking if it's NULL. name (f_name) should never by Neal Norwitz · 18 years ago
  44. ee4cc69 PyFunction_SetDefaults() is documented as taking None or a tuple. by Neal Norwitz · 18 years ago
  45. fc28e0d Handle a NULL name properly. by Neal Norwitz · 18 years ago
  46. 4b0a315 Use sizeof(buffer) instead of duplicating the constants to ensure they won't by Neal Norwitz · 18 years ago
  47. ef02b9e a & b were dereffed above, so they are known to be valid pointers. by Neal Norwitz · 18 years ago
  48. 7e49c6e Fix uninitialized memory read reported by Valgrind when running doctest. by Neal Norwitz · 18 years ago
  49. 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 · 18 years ago
  50. d5cfa54 Put method-wrappers into trashcan. Fixes #927248. by Martin v. Löwis · 18 years ago
  51. 0f415dc Another problem reported by Coverity. Backport candidate. by Neal Norwitz · 18 years ago
  52. b114984 Fix refleak by Neal Norwitz · 18 years ago
  53. 53c1692f Fix for an obscure bug introduced by revs 46806 and 46808, with a test. by Armin Rigo · 18 years ago
  54. 0f2783c Use Py_ssize_t by Neal Norwitz · 18 years ago
  55. ccff785 Patch #1507676: improve exception messages in abstract.c, object.c and typeobject.c. by Georg Brandl · 18 years ago
  56. d825143 Patch #1455898: Incremental mode for "mbcs" codec. by Martin v. Löwis · 18 years ago
  57. ea3912b If a classic class defined a __coerce__() method that just returned its two by Brett Cannon · 18 years ago
  58. de4c78a Initialize the type object so pychecker can't crash the interpreter. by Neal Norwitz · 18 years ago
  59. 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 · 18 years ago
  60. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
  61. a00c0b9 Don't leak the list object if there's an error allocating the item storage. Backport candidate by Neal Norwitz · 18 years ago
  62. 7d5b6e8 f_code can't be NULL based on Frame_New and other code that derefs it. by Neal Norwitz · 18 years ago
  63. 8e6675a Update doc to make it agree with code. Bottom factor out some common code. by Neal Norwitz · 18 years ago
  64. 9a8ae8f Suppress warning on MacOSX about possible use before set of proc. by Skip Montanaro · 18 years ago
  65. 0e8bd7e Patch #1495999: Part two of Windows CE changes. by Martin v. Löwis · 18 years ago
  66. acd0d6d SF bug #1503294. by Armin Rigo · 18 years ago
  67. 90e27d3 Apply perky's fix for #1503157: "/".join([u"", u""]) raising OverflowError. by Georg Brandl · 18 years ago
  68. 6946ea0 Fix bug introduced in rev. 46806 by not having variable declaration at the top of a block. by Brett Cannon · 18 years ago
  69. 22565aa An object with __call__ as an attribute, when called, will have that attribute checked for __call__ itself, and will continue to look until it finds an object without the attribute. This can lead to an infinite recursion. by Brett Cannon · 18 years ago
  70. 2425081 RFE #1491485: str/unicode.endswith()/startswith() now accept a tuple as first argument. by Georg Brandl · 18 years ago
  71. c48b0e6 Fix inconsistency in naming within an enum. by Brett Cannon · 18 years ago
  72. de3b052 Buffer objects would return the read or write buffer for a wrapped object when by Brett Cannon · 18 years ago
  73. 98b40ad Bug #1502805: don't alias file.__exit__ to file.close since the by Georg Brandl · 18 years ago
  74. fd01d79 (arre, arigo) SF bug #1350060 by Armin Rigo · 18 years ago
  75. ea229bd Fix coding style guide bug. by Brett Cannon · 18 years ago
  76. 9f16760 Repair refleaks in unicodeobject. by Georg Brandl · 18 years ago
  77. 3f76779 Patch #1359618: Speed-up charmap encoder. by Martin v. Löwis · 18 years ago
  78. 7a07193 SF #1499797, Fix for memory leak in WindowsError_str by Neal Norwitz · 18 years ago
  79. 3eeb173 _PyObject_DebugMalloc(): The return value should add by Tim Peters · 18 years ago
  80. 9ea89d2 In a PYMALLOC_DEBUG build obmalloc adds extra debugging info by Tim Peters · 18 years ago
  81. 38d4d4a Fix memory leak found by valgrind. by Neal Norwitz · 18 years ago
  82. d770ebd Armin committed his patch while I was reviewing it (I'm sure by Tim Peters · 18 years ago
  83. 35f6d36 [ 1497053 ] Let dicts propagate the exceptions in user __eq__(). by Armin Rigo · 18 years ago
  84. 6b50c63 Correctly allocate complex types with tp_alloc. (bug #1498638) by Georg Brandl · 18 years ago
  85. 85ac850 Correctly unpickle 2.4 exceptions via __setstate__ (patch #1498571) by Georg Brandl · 18 years ago
  86. b16e4e7 Remove ; at end of macro. There was a compiler recently that warned by Neal Norwitz · 18 years ago
  87. 9e9ef9f changed count to return 0 for slices outside the source string by Fredrik Lundh · 18 years ago
  88. 93eff6f changed find/rfind to return -1 for matches outside the source string by Fredrik Lundh · 18 years ago
  89. 9faa3ed PyLong_FromString(): Continued fraction analysis (explained in by Tim Peters · 18 years ago
  90. b0432bc Do the check for no keyword arguments in __init__ so that by Georg Brandl · 18 years ago
  91. 861089f Disallow keyword args for exceptions. by Georg Brandl · 18 years ago
  92. 05f97bf Add a test case for exception pickling. args is never NULL. by Georg Brandl · 18 years ago
  93. ddba473 Restore exception pickle support. #1497319. by Georg Brandl · 18 years ago
  94. 33f4a6a dict_print(): So that Neal & I don't spend the rest of by Tim Peters · 18 years ago
  95. 6381443 dict_print(): Explicitly narrow the return value by Tim Peters · 18 years ago
  96. 5e1b45d No DOWNCAST is required since sizeof(Py_ssize_t) >= sizeof(int) and Py_ReprEntr returns an int by Neal Norwitz · 18 years ago
  97. d3881b0 Use Py_SAFE_DOWNCAST for safety. Fix format strings. Remove 2 more stray | in comment by Neal Norwitz · 18 years ago
  98. 80af59c Remove stray | in comment by Neal Norwitz · 18 years ago
  99. 9b10f7e Convert relevant dict internals to Py_ssize_t. by Tim Peters · 18 years ago
  100. b51b470 fixed "abc".count("", 100) == -96 error (hopefully, nobody's relying on by Fredrik Lundh · 18 years ago