1. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 5 years ago
  2. 8e79e6e Fix syntax warnings in tests introduced in bpo-15248. (GH-11932) by Serhiy Storchaka · 5 years ago
  3. 44cc482 bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) by Serhiy Storchaka · 6 years ago
  4. 2c2044e bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9874) by Serhiy Storchaka · 6 years ago
  5. 914f9a0 bpo-34973: Fix crash in bytes constructor. (GH-9841) by Serhiy Storchaka · 6 years ago
  6. e890421 bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852) by Serhiy Storchaka · 6 years ago
  7. 1a997eb Add new tests for bytes and bytearray constructors. (GH-9843) by Serhiy Storchaka · 6 years ago
  8. a231428 bpo-20047: Make bytearray methods partition() and rpartition() rejecting (#4158) by Serhiy Storchaka · 7 years ago
  9. 604e74c bpo-20552: Use specific asserts in bytes tests (#790) by Serhiy Storchaka · 7 years ago
  10. b76ad51 bpo-29714: Fix a regression that bytes format may fail when containing zero bytes inside. (GH-499) by Xiang Zhang · 7 years ago
  11. 7ed28a8 Merge 3.6 by INADA Naoki · 8 years ago
  12. a634e23 Issue #29159: Fix regression in bytes(x) when x.__index__() raises Exception. by INADA Naoki · 8 years ago
  13. dd1da7f Issue #28927: bytes.fromhex() and bytearray.fromhex() now ignore all ASCII by Serhiy Storchaka · 8 years ago
  14. 7984bff Issue #28385: An error message when non-empty format spec is passed to by Serhiy Storchaka · 8 years ago
  15. d1af5ef Issue #28385: An error message when non-empty format spec is passed to by Serhiy Storchaka · 8 years ago
  16. c49a516 Remove old typo. by Serhiy Storchaka · 8 years ago
  17. 1b6c6da Issue #27506: Support bytes/bytearray.translate() delete as keyword argument by Martin Panter · 8 years ago
  18. 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 8 years ago
  19. f9efb8b Issue #27474: Unified error messages in the __contains__ method of bytes and by Serhiy Storchaka · 8 years ago
  20. 6c94d10 Issue #27443: __length_hint__() of bytearray itearator no longer return by Serhiy Storchaka · 8 years ago
  21. af65872 Issue #27443: __length_hint__() of bytearray itearator no longer return by Serhiy Storchaka · 8 years ago
  22. 0855e70 Issue #27007: The fromhex() class methods of bytes and bytearray subclasses by Serhiy Storchaka · 8 years ago
  23. 4b23494 Issue #27039: Fixed bytearray.remove() for values greater than 127. by Serhiy Storchaka · 8 years ago
  24. 7bf36da Issue #27039: Fixed bytearray.remove() for values greater than 127. by Serhiy Storchaka · 8 years ago
  25. e78592d Make bytes and bytearray subclass tests compatible with base types tests. by Serhiy Storchaka · 8 years ago
  26. 3fa86a0 Make bytes and bytearray subclass tests compatible with base types tests. by Serhiy Storchaka · 8 years ago
  27. e914d41 Issue #26766: Fix _PyBytesWriter_Finish() by Victor Stinner · 8 years ago
  28. c9a59e6 Issue #26764: Fixed SystemError in bytes.__rmod__. by Serhiy Storchaka · 8 years ago
  29. cfff15d Issue #26712: Merge string_tests cleanup from 3.5 by Martin Panter · 8 years ago
  30. 0d0db6c Issue #26712: Unify (r)split, (l/r)strip tests into string_tests by Martin Panter · 8 years ago
  31. 3c149a6 Issue #26764: Bacported tests for bytes formatting. by Serhiy Storchaka · 8 years ago
  32. 747be08 Issue #26257: Merge buffer_tests cleanup from 3.5 by Martin Panter · 8 years ago
  33. 152a19c Issue #26257: Eliminate buffer_tests.py and fix ByteArrayAsStringTest by Martin Panter · 8 years ago
  34. f39c0ac Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  35. 8dc2ec1 Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  36. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  37. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  38. de128e1 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  39. aabafe7 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 8 years ago
  40. 7909411 Issue #19587: Merge test_bytes cleanup from 3.5 by Martin Panter · 8 years ago
  41. 275bd96 Issue #19587: Remove masked and redundant tests in test_bytes by Martin Panter · 8 years ago
  42. 3182db3 Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
  43. 5aac3ed Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
  44. bb6e4a0 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  45. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  46. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  47. 83ff8a6 test_bytes: new try to fix test on '%p' formatter on Windows by Victor Stinner · 9 years ago
  48. 2bf8993 Optimize bytes.fromhex() and bytearray.fromhex() by Victor Stinner · 9 years ago
  49. 7ab986d Fix test_bytes on Windows by Victor Stinner · 9 years ago
  50. 03dab78 Rewrite PyBytes_FromFormatV() using _PyBytesWriter API by Victor Stinner · 9 years ago
  51. bc9e75e Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  52. 7b6e3b9 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  53. 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
  54. 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
  55. 32d34bc Use assertEqual rather than assertEquals to avoid the deprecation warning. by Gregory P. Smith · 9 years ago
  56. 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 9 years ago
  57. 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 9 years ago
  58. 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 9 years ago
  59. 4e1942b Don't use deprecated assertEquals. by Serhiy Storchaka · 10 years ago
  60. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
  61. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  62. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  63. 83cf99d Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  64. 0b2cacb Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  65. 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
  66. 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
  67. a2f9388 merge 3.4 (#22379) by Benjamin Peterson · 10 years ago
  68. c31f12d check that exception messages are not empty (#22379) by Benjamin Peterson · 10 years ago
  69. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  70. 7611964 Fix test_bytes when sys.stdin is None, for example on Windows when using by Victor Stinner · 10 years ago
  71. 507ac3a (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if by Victor Stinner · 11 years ago
  72. c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" by Victor Stinner · 11 years ago
  73. 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
  74. c4a10f5 Merge 3.3. by Stefan Krah · 12 years ago
  75. 6e572b8 Adapt test_bytes for a build --without-doc-strings. by Stefan Krah · 12 years ago
  76. 5b1acc0 #16910: merge with 3.3. by Ezio Melotti · 12 years ago
  77. 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
  78. 8b33dd8 Use OESeeror instead of os.error (#16720) by Andrew Svetlov · 12 years ago
  79. 7643c92 merge 3.3 (#16722) by Benjamin Peterson · 12 years ago
  80. 5ff3f73 try to call __bytes__ before __index__ (closes #16722) by Benjamin Peterson · 12 years ago
  81. 212843b #8401: merge with 3.3. by Ezio Melotti · 12 years ago
  82. 7376801 #8401: merge with 3.2. by Ezio Melotti · 12 years ago
  83. 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
  84. cfc22b4 Issue #15958: bytes.join and bytearray.join now accept arbitrary buffer objects. by Antoine Pitrou · 12 years ago
  85. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  86. 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
  87. f8eac00 Issue #13623: Fix a performance regression introduced by issue #12170 in by Victor Stinner · 13 years ago
  88. ac65d96 Issue #12170: The count(), find(), rfind(), index() and rindex() methods by Antoine Pitrou · 13 years ago
  89. 906b88f Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format. by Eli Bendersky · 13 years ago
  90. bf1253b #6780: merge with 3.2. by Ezio Melotti · 13 years ago
  91. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  92. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  93. 5020e00 Merge with 3.2. by Ezio Melotti · 13 years ago
  94. af92842 Use non-deprecated method name. by Ezio Melotti · 13 years ago
  95. c1ceb64 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  96. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  97. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  98. e0c8635d8 Merged revisions 88735 via svnmerge from by Eli Bendersky · 13 years ago
  99. 1bc4f19 Issue #11386: Fixed the exception thrown by bytearray.pop() for empty bytearrays by Eli Bendersky · 13 years ago
  100. 4db28d3 Issue #10516: added copy() and clear() methods to bytearrays as well by Eli Bendersky · 13 years ago