1. eda70b8 #11335: Fix memory leak after key function failure in sort by Daniel Stutzbach · 13 years ago
  2. d956131 (Merge 3.1) Issue #9756: When calling a method descriptor or a slot wrapper by Victor Stinner · 13 years ago
  3. 3249dec Issue #9756: When calling a method descriptor or a slot wrapper descriptor, the by Victor Stinner · 13 years ago
  4. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  5. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  6. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  7. 2fc8b87 Port 5b607cd8c71b (closes #11892) by Jesus Cea · 13 years ago
  8. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  9. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  10. 982ef4e #11845: Fix typo in rangeobject.c that caused a crash in compute_slice_indices. Patch by Daniel Urban. by Ezio Melotti · 13 years ago
  11. 02ba73c Merge with 3.1 by Ross Lagerwall · 13 years ago
  12. bbcfc1f Merge from 3.1. by Éric Araujo · 13 years ago
  13. 4804991 Fix obscure set crashers (#8420). Backport of d56b3cafb1e6, reviewed by Raymond. by Éric Araujo · 13 years ago
  14. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  15. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  16. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  17. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  18. e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 13 years ago
  19. 2b574a2 Merged revisions 88697 via svnmerge from by Victor Stinner · 13 years ago
  20. f6c8fd6 Merged revisions 86537,86867-86868,86881,86887,86913-86915,86931-86933,86960,86964,86974,86980,86996,87008,87050 via svnmerge from by Georg Brandl · 13 years ago
  21. 915605c Merged revisions 88550 via svnmerge from by Antoine Pitrou · 13 years ago
  22. 659eb84 Merged revisions 88481 via svnmerge from by Victor Stinner · 13 years ago
  23. 7be5b78 Merged revisions 88456 via svnmerge from by Martin v. Löwis · 13 years ago
  24. 032400b #11249: in PyType_FromSpec, copy tp_doc slot since it usually will point to a static string literal which should not be deallocated together with the type. by Georg Brandl · 13 years ago
  25. cc7e23a Issue #11134: Add missing fields to typeslots.h. Reviewed by Georg Brandl. by Martin v. Löwis · 14 years ago
  26. 738236d Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check in the limited ABI by Martin v. Löwis · 14 years ago
  27. a1eac72 Issue #11302: missing type check on _string.formatter_field_name_split and _string.formatter_parser caused crash. by Eric Smith · 14 years ago
  28. 566facd Merged revisions 88097 via svnmerge from by Antoine Pitrou · 14 years ago
  29. ad62b03 Issue #10451: memoryview objects could allow to mutate a readable buffer. by Antoine Pitrou · 14 years ago
  30. 32a8fe8 Merged revisions 88069 via svnmerge from by Benjamin Peterson · 14 years ago
  31. 37b9e46 remove unneeded assertion by Benjamin Peterson · 14 years ago
  32. d82f45b Merged revisions 88066 via svnmerge from by Benjamin Peterson · 14 years ago
  33. 0dd5ca0 correct assertion by Benjamin Peterson · 14 years ago
  34. acd1759 Merged revisions 88063 via svnmerge from by Benjamin Peterson · 14 years ago
  35. 67641d2 turn some checks into assertions, since they are implied by the caller by Benjamin Peterson · 14 years ago
  36. 616667f rangeobject.c (compute_slice_indices): Make function static. by Matthias Klose · 14 years ago
  37. 547d485 plug reference leak by Benjamin Peterson · 14 years ago
  38. a53d2ac Merged revisions 87960 via svnmerge from by Benjamin Peterson · 14 years ago
  39. 23b628e use PyErr_SetString instead of PyErr_Format by Benjamin Peterson · 14 years ago
  40. de36871 Merged revisions 87952-87954 via svnmerge from by Benjamin Peterson · 14 years ago
  41. 477ba91 don't segfault on deleting __abstractmethods__ #10892 by Benjamin Peterson · 14 years ago
  42. e993b10 Issue 10889: Support slicing and indexing of large ranges (no docs changes, since, as far as I know, we never said anywhere that this *didn't* work) by Nick Coghlan · 14 years ago
  43. 5b6fc63 Merged revisions 87834 via svnmerge from by Antoine Pitrou · 14 years ago
  44. b7fb2e2 Issue #8020: Avoid a crash where the small objects allocator would read by Antoine Pitrou · 14 years ago
  45. 189c091 Drop bf_getbuffer/bf_releasebuffer from stable ABI, see #10181. by Martin v. Löwis · 14 years ago
  46. b30111f Support comment lines and missing indices in typeslots.h. by Martin v. Löwis · 14 years ago
  47. aaa4e9a Remove arbitrary string length limits by Victor Stinner · 14 years ago
  48. dc55540 Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on Windows by Victor Stinner · 14 years ago
  49. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  50. b9cc00c Removed unneeded #include by Alexander Belopolsky · 14 years ago
  51. 9d254f7 Merged revisions 87368 via svnmerge from by Ezio Melotti · 14 years ago
  52. ac53ab6 #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Urban. by Ezio Melotti · 14 years ago
  53. 800dfee Merged revisions 87251 via svnmerge from by R. David Murray · 14 years ago
  54. ce4b170 #4236: avoid possible Fatal Error when import is called from __del__ by R. David Murray · 14 years ago
  55. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  56. 532d091 Reverted accidental commit (from r87159) by Alexander Belopolsky · 14 years ago
  57. fc55789 Updated UCD version and unicode.org links to Unicode 6.0.0 by Alexander Belopolsky · 14 years ago
  58. 9b955de use the more direct API by Benjamin Peterson · 14 years ago
  59. 0eb7f86 return views from dict proxy items/values/keys #10630 by Benjamin Peterson · 14 years ago
  60. f3fa568 Fix typo. by Georg Brandl · 14 years ago
  61. 70099a1 Removed static function complex_format, moved it into complex_repr. Modified tests to check both str and repr, which are the same for complex. by Eric Smith · 14 years ago
  62. 7b1bee4 Use copysign to produce appropriately signed zeros instead of trying to worm around possible compiler optimizations. by Mark Dickinson · 14 years ago
  63. 0169af1 Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  64. 3315438 Backout broken backport. (Sorry.) by Mark Dickinson · 14 years ago
  65. 11e77ff Merged revisions 87032 via svnmerge from by Mark Dickinson · 14 years ago
  66. d2a9b20 Issue #10596: Fix float.__mod__ to have the same behaviour as by Mark Dickinson · 14 years ago
  67. 66f2623 Remove some unecessary '#ifdef Py_NAN's from floatobject.c by Mark Dickinson · 14 years ago
  68. c9fb3c6 Fix indentation in Objects/longobject.c by Mark Dickinson · 14 years ago
  69. da72231 Regenerate. by Martin v. Löwis · 14 years ago
  70. 81c9b45 Add Revision keyword. by Martin v. Löwis · 14 years ago
  71. 35f08f0 Make script 2-vs-3-agnostic. by Martin v. Löwis · 14 years ago
  72. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  73. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  74. f961377 #6780: fix complex() constructor TypeError message by Victor Stinner · 14 years ago
  75. 37ee850 Issue 2690: Add support for slicing and negative indices to range objects (includes precalculation and storage of the range length). by Nick Coghlan · 14 years ago
  76. 3b9406b Remove redundant check for PyBytes in unicode_encode. by Georg Brandl · 14 years ago
  77. 9efdcca code style by Benjamin Peterson · 14 years ago
  78. 9833822 Issue9915: speeding up sorting with a key by Daniel Stutzbach · 14 years ago
  79. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  80. 715f3cd Issue #8685: Speed up set difference `a - b` when source set `a` is by Antoine Pitrou · 14 years ago
  81. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  82. 71c23d4 Include structseq.h in Python.h, and remove now-redundant includes in individual sources. by Georg Brandl · 14 years ago
  83. 5d744a8 Merged revisions 86791 via svnmerge from by Stefan Krah · 14 years ago
  84. 735bb12 Indentation cleanup. by Stefan Krah · 14 years ago
  85. 984bb58 Issue #7094: Add alternate ('#') flag to __format__ methods for float, complex and Decimal. Allows greater control over when decimal points appear. Added to make transitioning from %-formatting easier. '#g' still has a problem with Decimal which I'll fix soon. by Eric Smith · 14 years ago
  86. a1864f3 pep 7 actually wants the brace on a new line by Benjamin Peterson · 14 years ago
  87. 155614b code style and simplification by Benjamin Peterson · 14 years ago
  88. 7e5343b Add error handling in range_count. by Georg Brandl · 14 years ago
  89. 0b458d5 count() should return integers #10474 by Benjamin Peterson · 14 years ago
  90. 72288d4 code style by Benjamin Peterson · 14 years ago
  91. 6bb9989 #1574217: only swallow AttributeErrors in isinstance, not everything. by R. David Murray · 14 years ago
  92. f609654 handle dict subclasses gracefully in PyArg_ValidateKeywordArguments by Benjamin Peterson · 14 years ago
  93. 3e2b717 Issue #10359: Remove ";" after function definition, invalid in ISO C by Victor Stinner · 14 years ago
  94. d5af0a5 PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails by Victor Stinner · 14 years ago
  95. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  96. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  97. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  98. 16562f4 Merged revisions 86277 via svnmerge from by Eric Smith · 14 years ago
  99. 51d2fd9 Added more to docstrings for str.format, format_map, and __format__. by Eric Smith · 14 years ago
  100. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago