1. 440bbd0 Correct occurance → occurrence; extracted from patch by Georg Brandl by Martin Panter · 8 years ago
  2. 0c08fe0 Issue #27507: Check for integer overflow in bytearray.extend() by Martin Panter · 8 years ago
  3. 373773d Issue #27473: Fixed possible integer overflow in str, unicode and bytearray by Serhiy Storchaka · 8 years ago
  4. c742dff Issue #27039: Fixed bytearray.remove() for values greater than 127. by Serhiy Storchaka · 8 years ago
  5. 9a118f1 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  6. 14a7d63 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  7. c06a6d0 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  8. ab76635 Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray by Serhiy Storchaka · 9 years ago
  9. c7797dc Issue #19543: Emit deprecation warning for known non-text encodings. by Serhiy Storchaka · 9 years ago
  10. 5127ed7 Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  11. be580f2 Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_Resize by Kristján Valur Jónsson · 10 years ago
  12. 146a5fe Fix compilation on Windows by Christian Heimes · 12 years ago
  13. 67dc4a8 #8401: assigning an int to a bytearray slice (e.g. b[3:4] = 5) now raises an error. by Ezio Melotti · 12 years ago
  14. aad5b02 Improve tooltips for splitlines() by showing that the default for keepends is False. by Raymond Hettinger · 12 years ago
  15. fe94177 Issue #13019: Fix potential reference leaks in bytearray.extend(). by Antoine Pitrou · 12 years ago
  16. 5e3a19d merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  17. 44e8168 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  18. 24b07bc #11515: fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  19. 680e6eb Merged revisions 88735 via svnmerge from by Eli Bendersky · 14 years ago
  20. 28dadd9 Merged revisions 87050,87101,87146,87156,87172,87175,87371,87378,87522-87524,87526,87530-87535 via svnmerge from by Georg Brandl · 14 years ago
  21. 619f16e Issue #8930: fix some C code indentation by Antoine Pitrou · 14 years ago
  22. ae530c2 tiny simplification by Benjamin Peterson · 14 years ago
  23. 821a8ea have a clear error when passing something > sys.maxsize to bytearray by Benjamin Peterson · 14 years ago
  24. 2d7911e Silence more compiler warnings; fix an instance of potential undefined behaviour from signed overflow. by Mark Dickinson · 15 years ago
  25. 36ecd67 Issue #7788: Fix a crash produced by deleting a list slice with huge by Mark Dickinson · 15 years ago
  26. 1fafaab #7775: fixed docstring for rpartition by Ezio Melotti · 15 years ago
  27. e80a6a4 Issue #7561: Operations on empty bytearrays (such as `int(bytearray())`) by Antoine Pitrou · 15 years ago
  28. d234208 Fixed typo by Ezio Melotti · 15 years ago
  29. 6467213 Issue #7622: Improve the split(), rsplit(), splitlines() and replace() by Antoine Pitrou · 15 years ago
  30. 5b7139a Issue #7462: Implement the stringlib fast search algorithm for the `rfind`, by Antoine Pitrou · 15 years ago
  31. 9d10974 Fix missing semicolon by Mark Dickinson · 15 years ago
  32. dc782b5 backport keyword argument support for bytearray.decode by Benjamin Peterson · 15 years ago
  33. 135a7cf Issue #6847: s/bytes/bytearray/ in some bytearray error messages. Thanks Hagen Fürstenau. by Mark Dickinson · 15 years ago
  34. c8a7c7c Issue #6846: bytearray.pop was returning ints in the range [-128, 128) by Mark Dickinson · 15 years ago
  35. ec812ca Issue #6540: Fixed crash for bytearray.translate() with invalid parameters. by Georg Brandl · 15 years ago
  36. cac7af6 Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to py3k. Should fix Windows buildbot errors. by Eric Smith · 15 years ago
  37. d672001 rename internal bytes_ functions to bytearray by Benjamin Peterson · 15 years ago
  38. 517cfdc Whitespace normalization. by Georg Brandl · 15 years ago
  39. 9c1f7b2 fix funky indentation by Benjamin Peterson · 16 years ago
  40. a3e6c97 Fixed memory leak on failure. by Hirokazu Yamamoto · 16 years ago
  41. b516370 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 16 years ago
  42. 78821dd fix building the core with --disable-unicode by Benjamin Peterson · 16 years ago
  43. 6425a2f Backport r67974: by Georg Brandl · 16 years ago
  44. ae5bece Issue #4509: bugs in bytearray with exports (buffer protocol) by Antoine Pitrou · 16 years ago
  45. 46cc6d1 make sure that bytearray methods return a new bytearray even if there is no change by Benjamin Peterson · 16 years ago
  46. 7d4c317 Silenced compiler warning by Christian Heimes · 16 years ago
  47. 313bda1 Fix a refleak in bytearray.split and bytearray.rsplit, detected by by Amaury Forgeot d'Arc · 16 years ago
  48. f91d46a Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, by Martin v. Löwis · 16 years ago
  49. c86b54c Fix a couple of names in error messages that were wrong by Neal Norwitz · 16 years ago
  50. 3238a3e Backport part of r65043. by Georg Brandl · 16 years ago
  51. 3e75846 Use _getbytevalue() in init too. by Georg Brandl · 16 years ago
  52. 3e483f6 #3156: fix consistency in what type bytearray methods accept as items. by Georg Brandl · 16 years ago
  53. 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 16 years ago
  54. d897264 Docstring typo by Andrew M. Kuchling · 16 years ago
  55. 4472083 Renamed bytesobject.c to bytearrayobject.c by Christian Heimes · 16 years ago