1. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  2. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  3. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  4. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  5. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  6. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  7. 63eac15 The NULL pointer for empty strings turns out to be a pain. by Guido van Rossum · 17 years ago
  8. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  9. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  10. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  11. 6c1e674 Add trailing null bytes to a few more places. by Guido van Rossum · 17 years ago
  12. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  13. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  14. b6f1fdc Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  15. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  16. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  17. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  18. 4fc8ae4 Fix off-by-one bug in memmove() call in bytes_insert(). by Guido van Rossum · 18 years ago
  19. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 18 years ago
  20. b3f568f Remove a few stray tabs from bytesobject.c. by Georg Brandl · 18 years ago
  21. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 18 years ago
  22. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
  23. 376446d Implement extended slicing in bytes objects. by Thomas Wouters · 18 years ago
  24. 9a6e62b Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop' by Thomas Wouters · 18 years ago
  25. d204a71 Make bytesobject raise ValueError instead of TypeError again (thanks, Nick) by Thomas Wouters · 18 years ago
  26. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  27. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  28. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  29. 2018831 Adding bytes.join() -- a class methods that concatenates an iterable of bytes. by Guido van Rossum · 18 years ago
  30. a0867f7 Optimizations for bytes reallocation. by Guido van Rossum · 18 years ago
  31. 13e5721 Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes. by Guido van Rossum · 18 years ago
  32. d624f18 Added much functionality to the bytes type. by Guido van Rossum · 18 years ago
  33. e06b6b8 Fix a leak and a buglet discovered by Thomas. by Guido van Rossum · 18 years ago
  34. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago