1. af65872 Issue #27443: __length_hint__() of bytearray itearator no longer return by Serhiy Storchaka · 8 years ago
  2. 7bf36da Issue #27039: Fixed bytearray.remove() for values greater than 127. by Serhiy Storchaka · 8 years ago
  3. e78592d Make bytes and bytearray subclass tests compatible with base types tests. by Serhiy Storchaka · 8 years ago
  4. 3c149a6 Issue #26764: Bacported tests for bytes formatting. by Serhiy Storchaka · 8 years ago
  5. 0d0db6c Issue #26712: Unify (r)split, (l/r)strip tests into string_tests by Martin Panter · 8 years ago
  6. 152a19c Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest by Martin Panter · 8 years ago
  7. 8dc2ec1 Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  8. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  9. aabafe7 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  10. 275bd96 Issue #19587: Remove masked and redundant tests in test_bytes by Martin Panter · 9 years ago
  11. 5aac3ed Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
  12. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  13. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  14. bc9e75e Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  15. 7b6e3b9 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  16. 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
  17. 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
  18. 32d34bc Use assertEqual rather than assertEquals to avoid the deprecation warning. by Gregory P. Smith · 9 years ago
  19. 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 9 years ago
  20. 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 9 years ago
  21. 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 10 years ago
  22. 4e1942b Don't use deprecated assertEquals. by Serhiy Storchaka · 10 years ago
  23. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
  24. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  25. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  26. 83cf99d Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  27. 0b2cacb Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  28. 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
  29. 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
  30. a2f9388 merge 3.4 (#22379) by Benjamin Peterson · 10 years ago
  31. c31f12d check that exception messages are not empty (#22379) by Benjamin Peterson · 10 years ago
  32. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  33. 7611964 Fix test_bytes when sys.stdin is None, for example on Windows when using by Victor Stinner · 10 years ago
  34. 507ac3a (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if by Victor Stinner · 11 years ago
  35. c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" by Victor Stinner · 11 years ago
  36. 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
  37. c4a10f5 Merge 3.3. by Stefan Krah · 12 years ago
  38. 6e572b8 Adapt test_bytes for a build --without-doc-strings. by Stefan Krah · 12 years ago
  39. 5b1acc0 #16910: merge with 3.3. by Ezio Melotti · 12 years ago
  40. 0dceb56 #16910: test_bytes, test_unicode, and test_userstring now work with unittest test discovery. Patch by Zachary Ware. by Ezio Melotti · 12 years ago
  41. 8b33dd8 Use OESeeror instead of os.error (#16720) by Andrew Svetlov · 12 years ago
  42. 7643c92 merge 3.3 (#16722) by Benjamin Peterson · 12 years ago
  43. 5ff3f73 try to call __bytes__ before __index__ (closes #16722) by Benjamin Peterson · 12 years ago
  44. 212843b #8401: merge with 3.3. by Ezio Melotti · 12 years ago
  45. 7376801 #8401: merge with 3.2. by Ezio Melotti · 12 years ago
  46. 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
  47. cfc22b4 Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. by Antoine Pitrou · 12 years ago
  48. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 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. f8eac00 Issue #13623: Fix a performance regression introduced by issue #12170 in by Victor Stinner · 13 years ago
  51. ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
  52. 906b88f Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. by Eli Bendersky · 13 years ago
  53. bf1253b #6780: merge with 3.2. by Ezio Melotti · 13 years ago
  54. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  55. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  56. 5020e00 Merge with 3.2. by Ezio Melotti · 13 years ago
  57. af92842 Use non-deprecated method name. by Ezio Melotti · 13 years ago
  58. c1ceb64 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  59. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  60. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  61. e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 13 years ago
  62. 1bc4f19 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays by Eli Bendersky · 13 years ago
  63. 4db28d3 Issue #10516: added copy() and clear() methods to bytearrays as well by Eli Bendersky · 13 years ago
  64. 8f36af7 Normalize the encoding names for Latin-1 and UTF-8 to 'latin-1' and 'utf-8'. by Marc-André Lemburg · 13 years ago
  65. 29e762c test_bytes: test PyBytes_FromFormat() using ctypes by Victor Stinner · 14 years ago
  66. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  67. 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
  68. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  69. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  70. edf5f0d Strengthen BytesWarning tests. by Florent Xicluna · 14 years ago
  71. cf940c7 Issue #9530: Fix undefined-behaviour-inducing overflow checks in bytes and bytearray implementations. by Mark Dickinson · 14 years ago
  72. dcb2403 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, by Victor Stinner · 14 years ago
  73. 0ff8a50 Merged revisions 80125,80128,80130 via svnmerge from by Benjamin Peterson · 14 years ago
  74. 8380dd5 Merged revisions 80126 via svnmerge from by Benjamin Peterson · 14 years ago
  75. 4c04583 Merged revisions 80123-80124 via svnmerge from by Benjamin Peterson · 14 years ago
  76. 41a08bc Clean up warnings filter use in test_bytes. by Brett Cannon · 14 years ago
  77. 9b86b9a Merged revisions 79100 via svnmerge from by Florent Xicluna · 14 years ago
  78. a53f2c9 Merged revisions 77823 via svnmerge from by Mark Dickinson · 15 years ago
  79. bc09964 Merged revisions 77821 via svnmerge from by Mark Dickinson · 15 years ago
  80. e961593 Merged revisions 77727 via svnmerge from by Ezio Melotti · 15 years ago
  81. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  82. 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
  83. 20d6c15 Merged revisions 77576 via svnmerge from by Antoine Pitrou · 15 years ago
  84. fc8d6f4 Merged revisions 77573 via svnmerge from by Antoine Pitrou · 15 years ago
  85. cbaa6250 Merged revisions 77475 via svnmerge from by Antoine Pitrou · 15 years ago
  86. f845302 Merged revisions 77448 via svnmerge from by Antoine Pitrou · 15 years ago
  87. 41f58a7 Issue #7382: Fix bytes.__getnewargs__. by Alexandre Vassalotti · 15 years ago
  88. 344ec44 Merged revisions 76010 via svnmerge from by Antoine Pitrou · 15 years ago
  89. c9e9216 Fix test skipping in multibyte codec tests by Antoine Pitrou · 15 years ago
  90. 96bb15b Merged revisions 75404 via svnmerge from by Antoine Pitrou · 15 years ago
  91. 403ce78 Issue #7065: Fix a crash in bytes.maketrans and bytearray.maketrans when by Antoine Pitrou · 15 years ago
  92. 308d637 Merged revisions 74929 via svnmerge from by Benjamin Peterson · 15 years ago
  93. 424d75a Merged revisions 74675 via svnmerge from by Mark Dickinson · 15 years ago
  94. 54a3db9 Merged revisions 74673 via svnmerge from by Mark Dickinson · 15 years ago
  95. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  96. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  97. db12d45 Issue #3672: Reject surrogates in utf-8 codec; add surrogates error handler. by Martin v. Löwis · 15 years ago
  98. abc3877 Add bytes/bytearray.maketrans() to mirror str.maketrans(), and deprecate by Georg Brandl · 15 years ago
  99. ccc47b6 #4759: allow None as first argument of bytearray.translate(), for consistency with bytes.translate(). by Georg Brandl · 16 years ago
  100. 5504e89 Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 16 years ago