1. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 18 years ago
  2. 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 18 years ago
  3. 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 18 years ago
  4. da587ab Bug #1733488: Fix compilation of bufferobject.c on AIX. Will backport to 2.5. by Martin v. Löwis · 18 years ago
  5. 0ac6019 Add the new function object attribute names from py3k. by Neal Norwitz · 18 years ago
  6. c792629 Whitespace cleanup by Neal Norwitz · 18 years ago
  7. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 18 years ago
  8. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 18 years ago
  9. 5cd0fca Complete deprecation of BaseException.message. Some subclasses were directly by Brett Cannon · 18 years ago
  10. d501d1f Port rev 55353 from Guido: by Neal Norwitz · 18 years ago
  11. 360496d Fix a bug in test_c_api() that caused a negative refcount. by Guido van Rossum · 18 years ago
  12. abe1d48 As per Armin Rigo's suggestion, remove special handing from intobject.c to deal with the peculiarities of classobject's implementation of the number protocol. The nb_long method of classobject now falls back to nb_int if there is no __long__ attribute present. by Kristján Valur Jónsson · 18 years ago
  13. 229cee2 Deprecate BaseException.message as per PEP 352. by Brett Cannon · 18 years ago
  14. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
  15. 8b267b5 Remove dead code. This code couldn't be reached because earlier in by Neal Norwitz · 18 years ago
  16. 9790a27 Fix for #1303614 and #1174712: by Armin Rigo · 18 years ago
  17. 0a440d4 Export function sanitize_the_mode from fileobject.c as _PyFile_SanitizeMode(). Use this function in posixmodule.c when implementing fdopen(). This fixes test_subprocess.py for a VisualStudio 2005 compile. by Kristján Valur Jónsson · 18 years ago
  18. 796fc99 Fix a usage of the dangerous pattern decref - modify field - incref. by Armin Rigo · 18 years ago
  19. c0ba52d Revert r53997 as per by Armin Rigo · 18 years ago
  20. f64c900 Silence a compiler warning about incompatible pointer types. by Brett Cannon · 18 years ago
  21. cbd9ee6 When __slots__ are set to a unicode string, make it work the same as by Neal Norwitz · 18 years ago
  22. 2f2f579 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 · 18 years ago
  23. 4db5fe9 SF 1193128: Let str.translate(None) be an identity transformation by Raymond Hettinger · 18 years ago
  24. 1393669 SF 1191699: Make slices picklable by Raymond Hettinger · 18 years ago
  25. c02e131 Add some missing NULL checks which trigger crashes on low-memory conditions. by Georg Brandl · 18 years ago
  26. f102e24 Add a type.__init__() method that enforces the same signature as by Guido van Rossum · 18 years ago
  27. 143b564 - Bug #1683368: The object.__init__() and object.__new__() methods are by Guido van Rossum · 18 years ago
  28. e3146f5 Add test and fix for fromkeys() optional argument. by Raymond Hettinger · 18 years ago
  29. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
  30. 2b86994 Patch #1675423: PyComplex_AsCComplex() now tries to convert an object by Georg Brandl · 18 years ago
  31. 26ca925 Remove warning: funcion declaration isn't a prototype by Jeremy Hylton · 18 years ago
  32. 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 18 years ago
  33. 20f43d3 Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 18 years ago
  34. 71436f0 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 18 years ago
  35. 8f032cb Patch #1642844: comments to clarify the complexobject constructor. by Georg Brandl · 18 years ago
  36. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  37. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  38. 8903208 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 18 years ago
  39. e38051d Patch #1491866: change the complex() constructor to allow parthensized forms. This means complex(repr(x)) now works instead of raising a ValueError. by Collin Winter · 18 years ago
  40. 0593de3 Fix SF #1676971, Complex OverflowError has a typo by Neal Norwitz · 18 years ago
  41. 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
  42. fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 18 years ago
  43. 2d1f5c9 whitespace normalization by Jeremy Hylton · 18 years ago
  44. 18623e2 tabify by Jeremy Hylton · 18 years ago
  45. a892554 Fix assertion. by Jeremy Hylton · 18 years ago
  46. 759410b Do not copy free variables to locals in class namespaces. by Jeremy Hylton · 18 years ago
  47. 10a4b0e Backport from Py3k branch: fix refleak in PyString_Format. by Georg Brandl · 18 years ago
  48. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  49. 7218c2d Whitespace only changes by Neal Norwitz · 18 years ago
  50. 1c1a1c5 Add more details when releasing interned strings by Neal Norwitz · 18 years ago
  51. 15cade0 Fixup set/dict interoperability. by Raymond Hettinger · 18 years ago
  52. d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  53. 13a9828 Patch #1397848: add the reasoning behind no-resize-on-shrinkage. by Martin v. Löwis · 18 years ago
  54. fd96326 Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 19 years ago
  55. 0e7a632 Bypass set specific optimizations for set and frozenset subclasses. by Raymond Hettinger · 19 years ago
  56. 6d121f1 Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 19 years ago
  57. de33c62 Silence compiler warning by Raymond Hettinger · 19 years ago
  58. 4da5bf6 Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict. by Raymond Hettinger · 19 years ago
  59. 0922d71 SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 19 years ago
  60. db67aef Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses. by Raymond Hettinger · 19 years ago
  61. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 19 years ago
  62. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 19 years ago
  63. 9fdfadb SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 19 years ago
  64. 37e6502 Minor change in int() docstring for proper spacing. by Gustavo Niemeyer · 19 years ago
  65. a443bc8 Mention in the int() docstring that a base zero has meaning, as by Gustavo Niemeyer · 19 years ago
  66. 5399910 For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. by Raymond Hettinger · 19 years ago
  67. eabc0e8 Typo fix by Andrew M. Kuchling · 19 years ago
  68. 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
  69. 0c85086 Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug 1456209). by Raymond Hettinger · 19 years ago
  70. f31e175 Eliminate two redundant calls to PyObject_Hash(). by Raymond Hettinger · 19 years ago
  71. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 19 years ago
  72. 056dac1 Bug #1067760: Deprecate passing floats to file.seek. by Martin v. Löwis · 19 years ago
  73. 3a62404 Correctly forward exception in instance_contains(). by Martin v. Löwis · 19 years ago
  74. 7b932da Fix refleak by Neal Norwitz · 19 years ago
  75. b9f4ad3 Bug #1576657: when setting a KeyError for a tuple key, make sure that by Georg Brandl · 19 years ago
  76. ab77227 Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either. by Neal Norwitz · 19 years ago
  77. e7e4e2d Prevent crash if alloc of garbage fails. Found by Typo.pl. by Neal Norwitz · 19 years ago
  78. a5ccda9 Fix warnings with HP's C compiler. It doesn't recognize that infinite by Neal Norwitz · 19 years ago
  79. df08f0b WindowsError.str should display the windows error code, by Thomas Heller · 19 years ago
  80. 2c1375c Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 19 years ago
  81. b3f3755 Fix wording in comment by Andrew M. Kuchling · 19 years ago
  82. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 19 years ago
  83. 820d6ac Fix integer negation and absolute value to not rely by Martin v. Löwis · 19 years ago
  84. 3267d28 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 19 years ago
  85. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 19 years ago
  86. f6aa86e Allow exceptions to be directly sliced again by Brett Cannon · 19 years ago
  87. ca2ca79 Remove the __unicode__ method from exceptions. Allows unicode() to be called by Brett Cannon · 19 years ago
  88. c563a1c Fix refcounts and add error checks. by Raymond Hettinger · 19 years ago
  89. 38f6237 Bug #1542051: Exceptions now correctly call PyObject_GC_UnTrack. by Georg Brandl · 19 years ago
  90. a22975f Fix SF bug #1546288, crash in dict_equal. by Neal Norwitz · 19 years ago
  91. c10c9d0 "Conceptual" merge of rev 51711 from the 2.5 branch. by Tim Peters · 19 years ago
  92. a0c95fa Fix endcase for str.rpartition() by Raymond Hettinger · 19 years ago
  93. 2b3666f Make sure memory is properly cleaned up in file_init. by Brett Cannon · 19 years ago
  94. 348dc88 Reverting the patch that tried to fix the issue whereby x**2 raises by Alex Martelli · 19 years ago
  95. 20362a8 x**2 should about equal x*x (including for a float x such that the result is by Alex Martelli · 19 years ago
  96. 17753ec Patch #1541585: fix buffer overrun when performing repr() on by Neal Norwitz · 19 years ago
  97. 076d1e0 Fix a couple of ssize-t issues reported by Alexander Belopolsky on python-dev by Neal Norwitz · 19 years ago
  98. 7fd9607 Move initialization to after the asserts for non-NULL values. by Neal Norwitz · 19 years ago
  99. 6cbb726 Move initialization of interned strings to before allocating the by Neal Norwitz · 19 years ago
  100. 271a868 Subclasses of int/long are allowed to define an __index__. by Neal Norwitz · 19 years ago