1. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  2. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  3. 8ae62b6 Change PyBuffer to Py_buffer to be consistent with other non-object structures like Py_complex. Add some more functionality to the memoryview object. by Travis E. Oliphant · 17 years ago
  4. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  5. 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 17 years ago
  6. 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 17 years ago
  7. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  8. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  9. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  10. 75d38e9 Whitespace cleanup. by Guido van Rossum · 17 years ago
  11. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  12. b99f762 Merged in py3k-buffer branch to main line. All objects now use the buffer protocol in PEP 3118. by Travis E. Oliphant · 17 years ago
  13. eb29e9a Fix core dump in an endcase of b.strip() that I missed. by Guido van Rossum · 17 years ago
  14. 9c12106 Change PyUnicode_FromString[AndSize] to expect UTF-8. by Martin v. Löwis · 17 years ago
  15. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  16. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  17. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  18. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  19. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  20. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  21. 63eac15 The NULL pointer for empty strings turns out to be a pain. by Guido van Rossum · 17 years ago
  22. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  23. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  24. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  25. 6c1e674 Add trailing null bytes to a few more places. by Guido van Rossum · 17 years ago
  26. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  27. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  28. b6f1fdc Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  29. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  30. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  31. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  32. 4fc8ae4 Fix off-by-one bug in memmove() call in bytes_insert(). by Guido van Rossum · 18 years ago
  33. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 18 years ago
  34. b3f568f Remove a few stray tabs from bytesobject.c. by Georg Brandl · 18 years ago
  35. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 18 years ago
  36. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
  37. 376446d Implement extended slicing in bytes objects. by Thomas Wouters · 18 years ago
  38. 9a6e62b Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop' by Thomas Wouters · 18 years ago
  39. d204a71 Make bytesobject raise ValueError instead of TypeError again (thanks, Nick) by Thomas Wouters · 18 years ago
  40. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  41. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  42. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  43. 2018831 Adding bytes.join() -- a class methods that concatenates an iterable of bytes. by Guido van Rossum · 18 years ago
  44. a0867f7 Optimizations for bytes reallocation. by Guido van Rossum · 18 years ago
  45. 13e5721 Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes. by Guido van Rossum · 18 years ago
  46. d624f18 Added much functionality to the bytes type. by Guido van Rossum · 18 years ago
  47. e06b6b8 Fix a leak and a buglet discovered by Thomas. by Guido van Rossum · 18 years ago
  48. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago