1. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  2. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  3. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  4. 29b964d Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  5. 58bb82e Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  6. cda6b6d #14081: The sep and maxsplit parameter to str.split, bytes.split, and bytearray.split may now be passed as keyword arguments. by Ezio Melotti · 12 years ago
  7. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  8. e010fc0 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  9. b0e1f8b Issue #13503: Use a more efficient reduction format for bytearrays with by Antoine Pitrou · 13 years ago
  10. 39aba4f Use the small object allocator for small bytearrays by Antoine Pitrou · 13 years ago
  11. ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
  12. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  13. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  14. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  15. 6430fd5 Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE by Victor Stinner · 13 years ago
  16. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  17. 0d5f6ad Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines. by Mark Dickinson · 13 years ago
  18. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  19. fcdaaa9 merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  20. 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  21. bf1253b #6780: merge with 3.2. by Ezio Melotti · 13 years ago
  22. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  23. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  24. c1ceb64 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  25. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  26. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  27. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  28. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  29. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  30. e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 13 years ago
  31. 1bc4f19 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays by Eli Bendersky · 13 years ago
  32. 4db28d3 Issue #10516: added copy() and clear() methods to bytearrays as well by Eli Bendersky · 13 years ago
  33. 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
  34. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  35. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  36. f3fa568 Fix typo. by Georg Brandl · 14 years ago
  37. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  38. 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
  39. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  40. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  41. bc760d9 Merged revisions 84070,84074 via svnmerge from by Antoine Pitrou · 14 years ago
  42. 0010d37 Fix some compilation warnings under 64-bit Windows (issue #9566). by Antoine Pitrou · 14 years ago
  43. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  44. cf940c7 Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and bytearray implementations. by Mark Dickinson · 14 years ago
  45. 7e3b948 Issue #9530: Fix a couple of places where undefined behaviour can by Mark Dickinson · 14 years ago
  46. 10de93a Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be used uninitialized in this function). by Mark Dickinson · 14 years ago
  47. a57aae7 Merged revisions 81862 via svnmerge from by Antoine Pitrou · 14 years ago
  48. d118856 Merged revisions 81860 via svnmerge from by Antoine Pitrou · 14 years ago
  49. 0ff8a50 Merged revisions 80125,80128,80130 via svnmerge from by Benjamin Peterson · 14 years ago
  50. 9c0e94f Merged revisions 80129 via svnmerge from by Benjamin Peterson · 14 years ago
  51. 8380dd5 Merged revisions 80126 via svnmerge from by Benjamin Peterson · 14 years ago
  52. 5a41a4c Merged revisions 78185 via svnmerge from by Mark Dickinson · 14 years ago
  53. 66f575b Merged revisions 78183-78184 via svnmerge from by Mark Dickinson · 14 years ago
  54. a53f2c9 Merged revisions 77823 via svnmerge from by Mark Dickinson · 14 years ago
  55. bc09964 Merged revisions 77821 via svnmerge from by Mark Dickinson · 14 years ago
  56. 4c81fbb Merged revisions 77745 via svnmerge from by Ezio Melotti · 14 years ago
  57. 5b2b242 Merged revisions 77743 via svnmerge from by Ezio Melotti · 14 years ago
  58. 20d6c15 Merged revisions 77576 via svnmerge from by Antoine Pitrou · 14 years ago
  59. fc8d6f4 Merged revisions 77573 via svnmerge from by Antoine Pitrou · 14 years ago
  60. f2c5484 Merged revisions 77461 via svnmerge from by Antoine Pitrou · 15 years ago
  61. da2ecaf Merged revisions 77241 via svnmerge from by Antoine Pitrou · 15 years ago
  62. 308d637 Merged revisions 74929 via svnmerge from by Benjamin Peterson · 15 years ago
  63. 099d7a0 Merged revisions 74679 via svnmerge from by Mark Dickinson · 15 years ago
  64. 2b6705f Merged revisions 74677 via svnmerge from by Mark Dickinson · 15 years ago
  65. 424d75a Merged revisions 74675 via svnmerge from by Mark Dickinson · 15 years ago
  66. 54a3db9 Merged revisions 74673 via svnmerge from by Mark Dickinson · 15 years ago
  67. 069bcc3 Merged revisions 74169 via svnmerge from by Georg Brandl · 15 years ago
  68. 953152f Merged revisions 74167 via svnmerge from by Georg Brandl · 15 years ago
  69. 6dc46f5 Merged revisions 72040 via svnmerge from by Eric Smith · 15 years ago
  70. 153c70f Merged revisions 71719 via svnmerge from by Benjamin Peterson · 15 years ago
  71. abc3877 Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecate by Georg Brandl · 15 years ago
  72. ef3e4c2 Merged revisions 70980,71059,71225,71234,71241,71243,71249,71251,71255,71266,71299,71329,71397-71398,71486 via svnmerge from by Benjamin Peterson · 15 years ago
  73. e2641f4 Optimize slicing of bytes and bytearray by avoiding useless copying. by Alexandre Vassalotti · 15 years ago
  74. e0124bd Merged revisions 69998-69999,70002,70022-70023,70025-70026,70061,70086,70145,70171,70183,70188,70235,70244,70275,70281 via svnmerge from by Benjamin Peterson · 15 years ago
  75. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  76. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  77. ccc47b6 #4759: allow None as first argument of bytearray.translate(), for consistency with bytes.translate(). by Georg Brandl · 16 years ago
  78. 5504e89 Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 16 years ago
  79. 0f3641c Merged revisions 67291 via svnmerge from by Benjamin Peterson · 16 years ago
  80. 9e9dcd6 STINNER Victor (haypo)'s patch for bug 3988, Byte warning mode and b'' != '' by Barry Warsaw · 16 years ago
  81. a786b02 Merged revisions 65910,65977,65980,65984,65986,66000,66011-66012,66014,66017,66020 via svnmerge from by Benjamin Peterson · 16 years ago
  82. 3ce5d92 Closes release blocker #3627. by Neal Norwitz · 16 years ago
  83. c4fe6f3 Merged revisions 65780,65782,65785,65809,65812,65834,65846,65859,65861 via svnmerge from by Benjamin Peterson · 16 years ago
  84. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  85. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  86. 9a54d7c Merged revisions 65041 via svnmerge from by Georg Brandl · 16 years ago
  87. fbe94c5 Merged revisions 64842,64853,64856,64945 via svnmerge from by Robert Schuppenies · 16 years ago
  88. dcf97b9 Merged revisions 64434-64435,64440-64443,64445,64447-64448,64450,64452,64455,64461,64464,64466,64468 via svnmerge from by Benjamin Peterson · 16 years ago
  89. b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
  90. e5d68ac Fix misspelling. by Georg Brandl · 16 years ago
  91. 1e7217d Don't return the same object from trivial replace() cases -- by Georg Brandl · 16 years ago
  92. 17cb8a8 Fix all return types for str/bytes/bytearray docstrings and make the wording more consistent. by Georg Brandl · 16 years ago
  93. 2c9c7a5 Renamed files bytesobject.[ch] and stringobject.[ch] Fixed Windows build by Christian Heimes · 16 years ago