1. 6bf585e Fix typo in constant name. by Thomas Wouters · 16 years ago
  2. d92272e Use the right (portable) definition of the max of a Py_ssize_t. by Thomas Wouters · 16 years ago
  3. ee6bab0 Rewrite the list_inline_repeat overflow check slightly differently. by Guido van Rossum · 16 years ago
  4. 1859f5b Backport r60246. Fix issue #1303614, test67.py. by Guido van Rossum · 16 years ago
  5. 03706d2 Backport r55080: by Guido van Rossum · 16 years ago
  6. d187381 Fix an edge case whereby the __del__() method of a classic class could by Guido van Rossum · 16 years ago
  7. 03acd85 merge -r59315:59316 from py3k: Fix issue #1553: An errornous __length_hint__ can make list() raise a SystemError by Christian Heimes · 17 years ago
  8. a5463ab Spaces vs. Tabs. (backport from rev. 59224) by Georg Brandl · 17 years ago
  9. dbe97b3 Fix bug #1517, a possible segfault in lookup(). by Guido van Rossum · 17 years ago
  10. 30f61cb Issue #1445: Fix a SystemError when accessing the ``cell_contents`` by Amaury Forgeot d'Arc · 17 years ago
  11. 809123c Issue 1704621. Fix segfaults in list_repeat() and list_inplace_repeat(). by Guido van Rossum · 17 years ago
  12. e6a6f39 Backport r58892. Add missing "return NULL" in overflow check in PyString_Repr(). by Guido van Rossum · 17 years ago
  13. 1dcb9c9 Backport r58709 from trunk: by Georg Brandl · 17 years ago
  14. 13bfa3a Cause passing a string to generator.throw() to raise a deprecation warning. by Brett Cannon · 17 years ago
  15. b4d100c Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 17 years ago
  16. c5db923 Patch #1673759: add a missing overflow check when formatting floats by Georg Brandl · 17 years ago
  17. 8355dd5 Backport 55874: by Neal Norwitz · 17 years ago
  18. 66e64e2 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 17 years ago
  19. 897704d Bug #1733488: Fix compilation of bufferobject.c on AIX. by Martin v. Löwis · 17 years ago
  20. 5ece2fb Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC() by Neal Norwitz · 17 years ago
  21. a1392d5 Merge change 54982 from the trunk. This fixes the test_subprocess test in the testsuite for VisualStudio2005 builds, by "sanitizing" the "mode" that is used in the posixmodule's fdopen(). In particular the non-standard "U" mode character is removed. by Kristján Valur Jónsson · 17 years ago
  22. dffe9a2 the nb_long slot on classobject instances now defaults to call the nb_int slot member if there is no __long__ attribute found. This is in accordance with a suggestion from Armin Rigo, and allows the test_getargs2.py test in the testsuite for x64 by Kristján Valur Jónsson · 17 years ago
  23. f4601d8 Fix two problems that emerged when the testsuite was run with an x64 build: PyLong_FromSSize_t incorrectly assumed an unsigned object, and itertools.count() had the wrong upper limit for the iterator. by Kristján Valur Jónsson · 17 years ago
  24. 1dfa8ac Backport r54757 - missing NULL checks. by Georg Brandl · 17 years ago
  25. 87b5d91 Revert 53667 by Raymond Hettinger · 17 years ago
  26. e6e383f Revert SF #1615701 (rev 53655): dict.update() does *not* call __getitem__() or by Neal Norwitz · 17 years ago
  27. 03c566a Revert 54813 for 2.5.1 release. Can be applied after 2.5 branch is unfrozen. by Neal Norwitz · 17 years ago
  28. 9d9fbb4 Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed chars in frameobject.c which can occur with opcodes > 127 by Kristján Valur Jónsson · 17 years ago
  29. 7ed0a65 Test and fix fromkeys optional argument. by Raymond Hettinger · 17 years ago
  30. f94e89c Extend work on rev 52962 and 53830 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 17 years ago
  31. c1b4e8e Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 17 years ago
  32. 94c8872 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 17 years ago
  33. ad3d2c2 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 17 years ago
  34. e788155 Fix SF #1676971, Complex OverflowError has a typo by Neal Norwitz · 17 years ago
  35. ffb0a80 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 17 years ago
  36. 5f79586 Backport from Py3k branch: fix refleak in PyString_Format. by Georg Brandl · 17 years ago
  37. d621a6e Fixup set/dict interoperability. by Raymond Hettinger · 17 years ago
  38. 1bff796 Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 17 years ago
  39. b4af42a Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 17 years ago
  40. fdf7bf8 Bypass set specific optimizations for set and frozenset subclasses. by Raymond Hettinger · 17 years ago
  41. 9f0e1ea Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 17 years ago
  42. bbe9288 Silence compiler warning by Raymond Hettinger · 17 years ago
  43. 127ef44 Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict. by Raymond Hettinger · 17 years ago
  44. 20dcf1c SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 17 years ago
  45. 21191f4 Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses. by Raymond Hettinger · 17 years ago
  46. 75ba075 If you created a weakref in an object's __del__ method to itself it would by Brett Cannon · 17 years ago
  47. e471317 Backport trunk revision 53527: by Thomas Wouters · 17 years ago
  48. 535989e SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 18 years ago
  49. 9cdf703 For sets with cyclical reprs, emit '...' instead of recursing. by Raymond Hettinger · 18 years ago
  50. 775ebe2 Backport fixes to set objects: by Raymond Hettinger · 18 years ago
  51. a1e3422 Correctly forward exception in instance_contains(). by Martin v. Löwis · 18 years ago
  52. ae6b841 Fix refleak by Neal Norwitz · 18 years ago
  53. 5e9f94a Bug #1576657: when setting a KeyError for a tuple key, make sure that by Georg Brandl · 18 years ago
  54. ca63121 Backport 52506: Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either. by Neal Norwitz · 18 years ago
  55. e0cf624 Backport 52505: Prevent crash if alloc of garbage fails. Found by Typo.pl. by Neal Norwitz · 18 years ago
  56. 7e3ec04 Backport 52502: by Neal Norwitz · 18 years ago
  57. a0a50fe WindowsError.str should display the windows error code, by Thomas Heller · 18 years ago
  58. dd4c398 Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 18 years ago
  59. 4b63c21 Forward-port of r52136: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  60. 10525ad Fix integer negation and absolute value to not rely by Martin v. Löwis · 18 years ago
  61. 506cc18 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 18 years ago
  62. af4337a Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago
  63. c70e003 Backport of fix to allow exception instances to be sliced once again. by Brett Cannon · 18 years ago
  64. 19d76c5 Remove __unicode__ method so that ``unicode(BaseException)`` succeeds. by Brett Cannon · 18 years ago
  65. 8de403a Backport rev. 51798 from trunk: fix setobject.c refcounts and error checks. by Georg Brandl · 18 years ago
  66. ecab623 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 18 years ago
  67. 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
  68. 29a5fdb Fix str.rpartition(sep) when sep is not found in str. by Neal Norwitz · 18 years ago
  69. d3da7d3 Fix SF bug #1546288, crash in dict_equal by Neal Norwitz · 18 years ago
  70. cbdd350 i_divmod(): As discussed on Python-Dev, changed the overflow by Tim Peters · 18 years ago
  71. 19c35bb - Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 18 years ago
  72. 47f0ffa Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 18 years ago
  73. 3ba2478 Move initialization of interned strings to before allocating the by Neal Norwitz · 18 years ago
  74. 271a868 Subclasses of int/long are allowed to define an __index__. by Neal Norwitz · 18 years ago
  75. 26a07b5 Fix refleak introduced in rev. 51248. by Georg Brandl · 18 years ago
  76. 3a45779 Correct an accidentally removed previous patch. by Marc-André Lemburg · 18 years ago
  77. 040f76b Slightly revised version of patch #1538956: by Marc-André Lemburg · 18 years ago
  78. af33f2d Can't return NULL from a void function. If there is a memory error, by Neal Norwitz · 18 years ago
  79. 56423e5 Fix segfault when doing string formatting on subclasses of long if by Neal Norwitz · 18 years ago
  80. b09f4f5 Handle a whole lot of failures from PyString_FromInternedString(). by Neal Norwitz · 18 years ago
  81. 1872b1c Fix a couple of bugs exposed by the new __index__ code. The 64-bit buildbots by Neal Norwitz · 18 years ago
  82. 8a87f5d Patch #1538606, Patch to fix __index__() clipping. by Neal Norwitz · 18 years ago
  83. b88cfad Check return of PyMem_MALLOC (garbage) is non-NULL. by Neal Norwitz · 18 years ago
  84. 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
  85. 6b4953f Check returned pointer is valid. Klocwork #233 by Neal Norwitz · 18 years ago
  86. 6f5ff3f Klocwork made another run and found a bunch more problems. by Neal Norwitz · 18 years ago
  87. 51fc8c4 Fix and test for an infinite C recursion. by Armin Rigo · 18 years ago
  88. ab2f8f7 __hash__ may now return long int; the final hash by Martin v. Löwis · 18 years ago
  89. ab1049c memcmp() can return values other than -1, 0, and +1 but tp_compare must not. by Thomas Heller · 18 years ago
  90. b0061c8 Remove "non-mapping" and "non-sequence" from TypeErrors raised by by Georg Brandl · 18 years ago
  91. 0067b5f Typo fixes by Andrew M. Kuchling · 18 years ago
  92. e9462c7 Change fix for segfaulting property(), add a NEWS entry and a test. by Georg Brandl · 18 years ago
  93. 4538193 Fix bug caused by first decrefing, then increfing. by Georg Brandl · 18 years ago
  94. 7a36f5f SF patch #1534048 (bug #1531003): fix typo in error message by Fred Drake · 18 years ago
  95. c5e060d _PyWeakref_GetWeakrefCount() now returns a Py_ssize_t instead of long. by Neal Norwitz · 18 years ago
  96. 5a51bf5 typo fix by Andrew M. Kuchling · 18 years ago
  97. a7edb11 Whitespace normalization by Neal Norwitz · 18 years ago
  98. f71ec5a Bug #1515471: string.replace() accepts character buffers again. by Neal Norwitz · 18 years ago
  99. 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
  100. 101bac2 Closure can't be NULL at this point since we know it's a tuple. by Neal Norwitz · 18 years ago