1. e514093 Issue #27125: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  2. a90a4a9 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  3. fb81d3c Issue #26765: Moved common code for the replace() method of bytes and bytearray by Serhiy Storchaka · 8 years ago
  4. dd40fc3 Issue #26765: Moved common code and docstrings for bytes and bytearray methods by Serhiy Storchaka · 8 years ago
  5. 7a9579c Got rid of redundand "self" parameter declarations. by Serhiy Storchaka · 8 years ago
  6. 71dc3d8 Issue #25349, #26249: Fix memleak in formatfloat() by Victor Stinner · 8 years ago
  7. e914d41 Issue #26766: Fix _PyBytesWriter_Finish() by Victor Stinner · 8 years ago
  8. c9a59e6 Issue #26764: Fixed SystemError in bytes.__rmod__. by Serhiy Storchaka · 8 years ago
  9. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  10. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  11. 03f17f8 Issue #17339: Improved TypeError message in bytes constructor. by Serhiy Storchaka · 8 years ago
  12. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  13. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  14. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
  15. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
  16. fac3956 Optimize bytes.replace(b'', b'.') by Victor Stinner · 9 years ago
  17. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 9 years ago
  18. f006940 Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  19. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  20. 3182db3 Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
  21. 5aac3ed Issue #25766: Special method __bytes__() now works in str subclasses. by Serhiy Storchaka · 9 years ago
  22. bb6e4a0 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  23. f9afda5 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  24. 1509580 Issue #24731: Fixed crash on converting objects with special methods by Serhiy Storchaka · 9 years ago
  25. 413fdce Issue #24821: Refactor STRINGLIB(fastsearch_memchr_1char) and split it on by Serhiy Storchaka · 9 years ago
  26. c3d2bc1 Use _PyBytesWriter in _PyBytes_FromIterator() by Victor Stinner · 9 years ago
  27. c5c3ba4 Add _PyBytesWriter_Resize() function by Victor Stinner · 9 years ago
  28. 3c50ce3 Factorize _PyBytes_FromList() and _PyBytes_FromTuple() code using a C macro by Victor Stinner · 9 years ago
  29. f2eafa3 Split PyBytes_FromObject() into subfunctions by Victor Stinner · 9 years ago
  30. 2ec8063 Modify _PyBytes_DecodeEscapeRecode() to use _PyBytesAPI by Victor Stinner · 9 years ago
  31. f6358a7 _PyBytesWriter_Alloc(): only use 10 bytes of the small buffer in debug mode to by Victor Stinner · 9 years ago
  32. 2bf8993 Optimize bytes.fromhex() and bytearray.fromhex() by Victor Stinner · 9 years ago
  33. 772b2b0 Optimize bytearray % args by Victor Stinner · 9 years ago
  34. 661aacc Add use_bytearray attribute to _PyBytesWriter by Victor Stinner · 9 years ago
  35. 03dab78 Rewrite PyBytes_FromFormatV() using _PyBytesWriter API by Victor Stinner · 9 years ago
  36. e9aa595 Fix compilation error in _PyBytesWriter_WriteBytes() on Windows by Victor Stinner · 9 years ago
  37. 6c2cdae Writer APIs: use empty string singletons by Victor Stinner · 9 years ago
  38. c29e29b Relax _PyBytesWriter API by Victor Stinner · 9 years ago
  39. 0cdad1e Issue #25349: Add fast path for b'%c' % int by Victor Stinner · 9 years ago
  40. be75b8c Issue #25349: Optimize bytes % int by Victor Stinner · 9 years ago
  41. ce179bf Add _PyBytesWriter_WriteBytes() to factorize the code by Victor Stinner · 9 years ago
  42. ad77158 _PyBytesWriter: simplify code to avoid "prealloc" parameters by Victor Stinner · 9 years ago
  43. 53926a1 _PyBytesWriter: rename size attribute to min_size by Victor Stinner · 9 years ago
  44. fa7762e Issue #25349: Optimize bytes % args using the new private _PyBytesWriter API by Victor Stinner · 9 years ago
  45. b3653a3 Issue #25318: cleanup code _PyBytesWriter by Victor Stinner · 9 years ago
  46. b13b97d Issue #25318: Fix compilation error by Victor Stinner · 9 years ago
  47. 0016507 Issue #25318: Move _PyBytesWriter to bytesobject.c by Victor Stinner · 9 years ago
  48. d92d4ef Issue #23573: Restored optimization of bytes.rfind() and bytearray.rfind() by Serhiy Storchaka · 9 years ago
  49. ac5569b Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  50. fa494fd Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  51. 8b2e8b6 Specify default values of semantic booleans in Argument Clinic generated signatures as booleans. by Serhiy Storchaka · 9 years ago
  52. 8cb6569 Implements issue #9951: Adds a hex() method to bytes, bytearray, & memoryview. by Gregory P. Smith · 9 years ago
  53. 4e25913 Remove local dead code. In both blocks dir is always greater 0. by Christian Heimes · 9 years ago
  54. 89964c4 Issue #23944: Argument Clinic now wraps long impl prototypes at column 78. by Larry Hastings · 9 years ago
  55. 1009bf1 Issue #23501: Argumen Clinic now generates code into separate files by default. by Serhiy Storchaka · 10 years ago
  56. 41525e3 Issue #23466: Raised OverflowError if %c argument is out of range. by Serhiy Storchaka · 10 years ago
  57. 2c7b5a9 Issue #23466: %c, %o, %x, and %X in bytes formatting now raise TypeError on by Serhiy Storchaka · 10 years ago
  58. dabbfe7 Issue #23573: Fix bytes.rfind() and bytearray.rfind() on Windows by Victor Stinner · 10 years ago
  59. d9d769f Issue #23573: Increased performance of string search operations (str.find, by Serhiy Storchaka · 10 years ago
  60. 1dd4982 Issue #23681: The -b option now affects comparisons of bytes with int. by Serhiy Storchaka · 10 years ago
  61. 62e977f Close issue23467: add %r compatibility to bytes and bytearray by Ethan Furman · 10 years ago
  62. 63afdaa Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 10 years ago
  63. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 10 years ago
  64. 26861b0 Issue #23450: Fixed possible integer overflows. by Serhiy Storchaka · 10 years ago
  65. ea5ce5a Issue #23383: Cleaned up bytes formatting. by Serhiy Storchaka · 10 years ago
  66. 8384870 Issue #22896: Fixed using _getbuffer() in recently added _PyBytes_Format(). by Serhiy Storchaka · 10 years ago
  67. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  68. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 10 years ago
  69. 5474d0b Issue #20284: Fix a compilation warning on Windows by Victor Stinner · 10 years ago
  70. a8efc96 ensure ilen is initialized when it is assigned to len by Benjamin Peterson · 10 years ago
  71. b95b561 Issue20284: Implement PEP461 by Ethan Furman · 10 years ago
  72. 83cf99d Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  73. 0b2cacb Issue #20335: bytes constructor now raises TypeError when encoding or errors by Serhiy Storchaka · 10 years ago
  74. dfbeb16 Issue #22615: Argument Clinic now supports the "type" argument for the by Larry Hastings · 10 years ago
  75. 861470c #16518: Bring error messages in harmony with docs ("bytes-like object") by R David Murray · 10 years ago
  76. cdfb769 merge 3.4 by Benjamin Peterson · 10 years ago
  77. c2cfa8d merge 3.3 by Benjamin Peterson · 10 years ago
  78. d48bc94 these variables ought to be Py_ssize_t by Benjamin Peterson · 10 years ago
  79. 36a24f3 merge 3.4 (#22519) by Benjamin Peterson · 10 years ago
  80. 18f836f merge 3.3 (closes #22519) by Benjamin Peterson · 10 years ago
  81. 42ff105 fix overflow checking in PyBytes_Repr (closes #22519) by Benjamin Peterson · 10 years ago
  82. 20b39b2 Removed redundant casts to `char *`. by Serhiy Storchaka · 10 years ago
  83. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  84. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 10 years ago
  85. 88d146b Optimize PyBytes_FromObject(): only overallocate when size=0 to not get the by Victor Stinner · 10 years ago
  86. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  87. 0efea32 Rerun AC, silence pointer conversion warnings. by Martin v. Löwis · 10 years ago
  88. 7252a6e Issue #20179: Apply Argument Clinic to bytes and bytearray. Patch by Tal Einat. by Martin v. Löwis · 10 years ago
  89. bca9694 Issue #21442: Fix MSVC compiler warning introduced by issue21377. by Zachary Ware · 10 years ago
  90. db067af Issue #21233: Add new C functions: PyMem_RawCalloc(), PyMem_Calloc(), by Victor Stinner · 10 years ago
  91. 161d695 Issue #21377: PyBytes_Concat() now tries to concatenate in-place when the first argument has a reference count of 1. by Antoine Pitrou · 10 years ago
  92. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  93. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  94. 507ac3a (Merge 3.3) Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if by Victor Stinner · 11 years ago
  95. c9362cf Issue #19969: PyBytes_FromFormatV() now raises an OverflowError if "%c" by Victor Stinner · 11 years ago
  96. d3afe78 Silence expression result unused warnings with clang. by Christian Heimes · 11 years ago
  97. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 11 years ago
  98. 745d54d #17806: Added keyword-argument support for "tabsize" to str/bytes.expandtabs(). by Ezio Melotti · 11 years ago
  99. fd9e44d Issue #16286: optimize PyUnicode_RichCompare() for identical strings (same by Victor Stinner · 11 years ago
  100. c8bc537 Issue #16286: write a new subfunction bytes_compare_eq() by Victor Stinner · 11 years ago