1. d92d4ef Issue #23573: Restored optimization of bytes.rfind() and bytearray.rfind() by Serhiy Storchaka · 9 years ago
  2. bc9e75e Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  3. 7b6e3b9 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  4. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  5. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  6. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  7. ef64847 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
  8. 2545411 Issue #23985: Fix a possible buffer overrun when deleting a slice from the front of a bytearray and then appending some other bytes data. by Antoine Pitrou · 9 years ago
  9. 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 9 years ago
  10. 4e25913 Remove local dead code. In both blocks dir is always greater 0. by Christian Heimes · 9 years ago
  11. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  12. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 9 years ago
  13. dabbfe7 Issue #23573: Fix bytes.rfind() and bytearray.rfind() on Windows by Victor Stinner · 9 years ago
  14. d9d769f Issue #23573: Increased performance of string search operations (str.find, by Serhiy Storchaka · 9 years ago
  15. 5178d91 Issue #14203: Remove obsolete support for view==NULL in PyBuffer_FillInfo() by Stefan Krah · 10 years ago
  16. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  17. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  18. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
  19. 8a03896 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
  20. cc23154 Issue #22335: Fix crash when trying to enlarge a bytearray to 0x7fffffff bytes on a 32-bit platform. by Antoine Pitrou · 10 years ago
  21. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  22. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  23. 0efea32 Rerun AC, silence pointer conversion warnings. by Martin v. Löwis · 10 years ago
  24. 7252a6e Issue #20179: Apply Argument Clinic to bytes and bytearray. Patch by Tal Einat. by Martin v. Löwis · 10 years ago
  25. 2bc4d95 Issue #21233: Revert bytearray(int) optimization using calloc() by Victor Stinner · 10 years ago
  26. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  27. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  28. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  29. 8455723 Close #19568: Fix bytearray_setslice_linear(), fix handling of by Victor Stinner · 11 years ago
  30. 745d54d #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). by Ezio Melotti · 11 years ago
  31. 5b72075 Hopefully fix Windows compilation error following 499a96611baa by Antoine Pitrou · 11 years ago
  32. 5df8a8a Issue #19087: Improve bytearray allocation in order to allow cheap popping of data at the front (slice deletion). by Antoine Pitrou · 11 years ago
  33. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  34. 6895947 Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  35. c731bbe Propagate error when PyByteArray_Resize() fails in bytearray_translate() by Christian Heimes · 11 years ago
  36. e9d08cf Fix compilation on Windows by Christian Heimes · 12 years ago
  37. d081fbb Fix compilation on Windows by Christian Heimes · 12 years ago
  38. 6d26ade Fix compilation on Windows by Christian Heimes · 12 years ago
  39. 212843b #8401: merge with 3.3. by Ezio Melotti · 12 years ago
  40. 7376801 #8401: merge with 3.2. by Ezio Melotti · 12 years ago
  41. c64bcbe #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
  42. cfc22b4 Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. by Antoine Pitrou · 12 years ago
  43. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  44. 7d12d9d Issue #12834: Fix PyBuffer_ToContiguous() for non-contiguous arrays. by Stefan Krah · 12 years ago
  45. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  46. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  47. 29b964d Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  48. 58bb82e Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  49. 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
  50. bb2e9c4 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  51. e010fc0 Issue #11231: Fix bytes and bytearray docstrings by Victor Stinner · 13 years ago
  52. b0e1f8b Issue #13503: Use a more efficient reduction format for bytearrays with by Antoine Pitrou · 13 years ago
  53. 39aba4f Use the small object allocator for small bytearrays by Antoine Pitrou · 13 years ago
  54. ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
  55. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  56. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  57. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  58. 6430fd5 Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE by Victor Stinner · 13 years ago
  59. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  60. 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
  61. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  62. 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
  63. 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  64. bf1253b #6780: merge with 3.2. by Ezio Melotti · 13 years ago
  65. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  66. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  67. c1ceb64 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  68. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  69. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  70. 4969f70 #11515: Merge with 3.1. by Ezio Melotti · 13 years ago
  71. 42da663 #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  72. 3730892 #11515: Merge with 3.2. by Ezio Melotti · 13 years ago
  73. e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 13 years ago
  74. 1bc4f19 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays by Eli Bendersky · 13 years ago
  75. 4db28d3 Issue #10516: added copy() and clear() methods to bytearrays as well by Eli Bendersky · 13 years ago
  76. 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
  77. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  78. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  79. f3fa568 Fix typo. by Georg Brandl · 14 years ago
  80. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  81. 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
  82. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  83. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  84. bc760d9 Merged revisions 84070,84074 via svnmerge from by Antoine Pitrou · 14 years ago
  85. 0010d37 Fix some compilation warnings under 64-bit Windows (issue #9566). by Antoine Pitrou · 14 years ago
  86. f0f4514 Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99 by Alexander Belopolsky · 14 years ago
  87. cf940c7 Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and bytearray implementations. by Mark Dickinson · 14 years ago
  88. 7e3b948 Issue #9530: Fix a couple of places where undefined behaviour can by Mark Dickinson · 14 years ago
  89. 10de93a Silence gcc warning. (In function 'bytearray_init': warning: 'value' may be used uninitialized in this function). by Mark Dickinson · 14 years ago
  90. a57aae7 Merged revisions 81862 via svnmerge from by Antoine Pitrou · 14 years ago
  91. d118856 Merged revisions 81860 via svnmerge from by Antoine Pitrou · 14 years ago
  92. 0ff8a50 Merged revisions 80125,80128,80130 via svnmerge from by Benjamin Peterson · 14 years ago
  93. 9c0e94f Merged revisions 80129 via svnmerge from by Benjamin Peterson · 14 years ago
  94. 8380dd5 Merged revisions 80126 via svnmerge from by Benjamin Peterson · 14 years ago
  95. 5a41a4c Merged revisions 78185 via svnmerge from by Mark Dickinson · 14 years ago
  96. 66f575b Merged revisions 78183-78184 via svnmerge from by Mark Dickinson · 14 years ago
  97. a53f2c9 Merged revisions 77823 via svnmerge from by Mark Dickinson · 15 years ago
  98. bc09964 Merged revisions 77821 via svnmerge from by Mark Dickinson · 15 years ago
  99. 4c81fbb Merged revisions 77745 via svnmerge from by Ezio Melotti · 15 years ago
  100. 5b2b242 Merged revisions 77743 via svnmerge from by Ezio Melotti · 15 years ago