1. 4c20bc4 Generators had their throw() method allowing string exceptions. That's a no-no. by Brett Cannon · 17 years ago
  2. b559113 Patch # 1026 by Benjamin Aranguren (with Alex Martelli): by Guido van Rossum · 17 years ago
  3. a0c0551 Fix a possible segfault from recursing too deep to get the repr of a list. by Brett Cannon · 17 years ago
  4. 1e534b5 Fix a crasher where Python code managed to infinitely recurse in C code without by Brett Cannon · 17 years ago
  5. 9d04542 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
  6. 8757878 Rewrap line. by Walter Dörwald · 17 years ago
  7. 3ccec68 Improve extended slicing support in builtin types and classes. Specifically: by Thomas Wouters · 17 years ago
  8. d7e9f60 Revert accidental checkins from last commit. by Georg Brandl · 17 years ago
  9. fdca6d8 Demand version 2.5.1 since 2.5 has a bug with codecs.open context managers. by Georg Brandl · 17 years ago
  10. 9ab80a9 Move another variable declaration up. by Walter Dörwald · 17 years ago
  11. 20b40d3 Move variable declaration up. by Walter Dörwald · 17 years ago
  12. 6e39080 Backport r57105 and r57145 from the py3k branch: UTF-32 codecs. by Walter Dörwald · 17 years ago
  13. 9efd9b6 Bug #1763149: use proper slice syntax in docstring. (backport) by Georg Brandl · 17 years ago
  14. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  15. 7c3b50d Patch #1673759: add a missing overflow check when formatting floats with %G. by Georg Brandl · 17 years ago
  16. 84a3efe Add T_PYSSIZET in structmember.h: This can be used for Py_ssize_t members. by Walter Dörwald · 17 years ago
  17. 5c9a81a Fix a bug when there was a newline in the string expandtabs was called on. by Neal Norwitz · 17 years ago
  18. 7dbd2a3 Prevent expandtabs() on string and unicode objects from causing a segfault when by Neal Norwitz · 17 years ago
  19. da587ab Bug #1733488: Fix compilation of bufferobject.c on AIX. Will backport to 2.5. by Martin v. Löwis · 17 years ago
  20. 0ac6019 Add the new function object attribute names from py3k. by Neal Norwitz · 17 years ago
  21. c792629 Whitespace cleanup by Neal Norwitz · 17 years ago
  22. 8b2bfbc Add -3 option to the interpreter to warn about features that are by Neal Norwitz · 17 years ago
  23. a84dcd7 Stop using METH_OLDARGS implicitly by Neal Norwitz · 17 years ago
  24. 5cd0fca Complete deprecation of BaseException.message. Some subclasses were directly by Brett Cannon · 17 years ago
  25. d501d1f Port rev 55353 from Guido: by Neal Norwitz · 17 years ago
  26. 360496d Fix a bug in test_c_api() that caused a negative refcount. by Guido van Rossum · 18 years ago
  27. 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
  28. 229cee2 Deprecate BaseException.message as per PEP 352. by Brett Cannon · 18 years ago
  29. f030394 Fix problems in x64 build that were discovered by the testsuite: by Kristján Valur Jónsson · 18 years ago
  30. 8b267b5 Remove dead code. This code couldn't be reached because earlier in by Neal Norwitz · 18 years ago
  31. 9790a27 Fix for #1303614 and #1174712: by Armin Rigo · 18 years ago
  32. 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
  33. 796fc99 Fix a usage of the dangerous pattern decref - modify field - incref. by Armin Rigo · 18 years ago
  34. c0ba52d Revert r53997 as per by Armin Rigo · 18 years ago
  35. f64c900 Silence a compiler warning about incompatible pointer types. by Brett Cannon · 18 years ago
  36. cbd9ee6 When __slots__ are set to a unicode string, make it work the same as by Neal Norwitz · 18 years ago
  37. 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
  38. 4db5fe9 SF 1193128: Let str.translate(None) be an identity transformation by Raymond Hettinger · 18 years ago
  39. 1393669 SF 1191699: Make slices picklable by Raymond Hettinger · 18 years ago
  40. c02e131 Add some missing NULL checks which trigger crashes on low-memory conditions. by Georg Brandl · 18 years ago
  41. f102e24 Add a type.__init__() method that enforces the same signature as by Guido van Rossum · 18 years ago
  42. 143b564 - Bug #1683368: The object.__init__() and object.__new__() methods are by Guido van Rossum · 18 years ago
  43. e3146f5 Add test and fix for fromkeys() optional argument. by Raymond Hettinger · 18 years ago
  44. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
  45. 2b86994 Patch #1675423: PyComplex_AsCComplex() now tries to convert an object by Georg Brandl · 18 years ago
  46. 26ca925 Remove warning: funcion declaration isn't a prototype by Jeremy Hylton · 18 years ago
  47. 6f2d09c Patch #1623563: allow __class__ assignment for classes with __slots__. by Žiga Seilnacht · 18 years ago
  48. 20f43d3 Patch #1462488: prevent a segfault in object_reduce_ex() by splitting by Žiga Seilnacht · 18 years ago
  49. 71436f0 Patch #1680015: Don't modify __slots__ tuple if it contains an unicode by Žiga Seilnacht · 18 years ago
  50. 8f032cb Patch #1642844: comments to clarify the complexobject constructor. by Georg Brandl · 18 years ago
  51. 3bb1567 Typo and grammar fixes. by Georg Brandl · 18 years ago
  52. 871f1bc Backport from Py3k branch: by Georg Brandl · 18 years ago
  53. 8903208 Patch #1675981: remove unreachable code from type.__new__() method. by Žiga Seilnacht · 18 years ago
  54. 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
  55. 0593de3 Fix SF #1676971, Complex OverflowError has a typo by Neal Norwitz · 18 years ago
  56. 00cd818 Patch #1638879: don't accept strings with embedded NUL bytes in long(). by Georg Brandl · 18 years ago
  57. fa95569 Add checking for a number of metaclass error conditions. by Jeremy Hylton · 18 years ago
  58. 2d1f5c9 whitespace normalization by Jeremy Hylton · 18 years ago
  59. 18623e2 tabify by Jeremy Hylton · 18 years ago
  60. a892554 Fix assertion. by Jeremy Hylton · 18 years ago
  61. 759410b Do not copy free variables to locals in class namespaces. by Jeremy Hylton · 18 years ago
  62. 10a4b0e Backport from Py3k branch: fix refleak in PyString_Format. by Georg Brandl · 18 years ago
  63. ee3a1b5 Variation of patch # 1624059 to speed up checking if an object is a subclass by Neal Norwitz · 18 years ago
  64. 7218c2d Whitespace only changes by Neal Norwitz · 18 years ago
  65. 1c1a1c5 Add more details when releasing interned strings by Neal Norwitz · 18 years ago
  66. 15cade0 Fixup set/dict interoperability. by Raymond Hettinger · 18 years ago
  67. d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  68. 13a9828 Patch #1397848: add the reasoning behind no-resize-on-shrinkage. by Martin v. Löwis · 18 years ago
  69. fd96326 Bug #1653736: Properly discard third argument to slot_nb_inplace_power. by Martin v. Löwis · 18 years ago
  70. 0e7a632 Bypass set specific optimizations for set and frozenset subclasses. by Raymond Hettinger · 18 years ago
  71. 6d121f1 Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 18 years ago
  72. de33c62 Silence compiler warning by Raymond Hettinger · 18 years ago
  73. 4da5bf6 Bug #1575169: operator.isSequenceType() now returns False for subclasses of dict. by Raymond Hettinger · 18 years ago
  74. 0922d71 SF #1615701: make d.update(m) honor __getitem__() and keys() in dict subclasses by Raymond Hettinger · 18 years ago
  75. db67aef Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses. by Raymond Hettinger · 18 years ago
  76. f5bee30 Fix crasher for when an object's __del__ creates a new weakref to itself. by Brett Cannon · 18 years ago
  77. afea529 SF patch #1630975: Fix crash when replacing sys.stdout in sitecustomize by Thomas Wouters · 18 years ago
  78. 9fdfadb SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 18 years ago
  79. 37e6502 Minor change in int() docstring for proper spacing. by Gustavo Niemeyer · 18 years ago
  80. a443bc8 Mention in the int() docstring that a base zero has meaning, as by Gustavo Niemeyer · 18 years ago
  81. 5399910 For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. by Raymond Hettinger · 18 years ago
  82. eabc0e8 Typo fix by Andrew M. Kuchling · 18 years ago
  83. 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 · 18 years ago
  84. 0c85086 Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug 1456209). by Raymond Hettinger · 18 years ago
  85. f31e175 Eliminate two redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  86. 283a135 Patch [ 1586791 ] better error msgs for some TypeErrors by Georg Brandl · 18 years ago
  87. 056dac1 Bug #1067760: Deprecate passing floats to file.seek. by Martin v. Löwis · 18 years ago
  88. 3a62404 Correctly forward exception in instance_contains(). by Martin v. Löwis · 18 years ago
  89. 7b932da Fix refleak by Neal Norwitz · 18 years ago
  90. b9f4ad3 Bug #1576657: when setting a KeyError for a tuple key, make sure that by Georg Brandl · 18 years ago
  91. ab77227 Don't inline Py_ADDRESS_IN_RANGE with gcc 4+ either. by Neal Norwitz · 18 years ago
  92. e7e4e2d Prevent crash if alloc of garbage fails. Found by Typo.pl. by Neal Norwitz · 18 years ago
  93. a5ccda9 Fix warnings with HP's C compiler. It doesn't recognize that infinite by Neal Norwitz · 18 years ago
  94. df08f0b WindowsError.str should display the windows error code, by Thomas Heller · 18 years ago
  95. 2c1375c Bug #1545497: when given an explicit base, int() did ignore NULs by Georg Brandl · 18 years ago
  96. b3f3755 Fix wording in comment by Andrew M. Kuchling · 18 years ago
  97. 7ccbca9 Forward-port of r52136,52138: a review of overflow-detecting code. by Armin Rigo · 18 years ago
  98. 820d6ac Fix integer negation and absolute value to not rely by Martin v. Löwis · 18 years ago
  99. 3267d28 Bug #1566800: make sure that EnvironmentError can be called with any by Georg Brandl · 18 years ago
  100. 5d59c09 Patch #1567691: super() and new.instancemethod() now don't accept by Georg Brandl · 18 years ago