1. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  2. 4f06612 Enabled fromhex('') test for bytes by Christian Heimes · 17 years ago
  3. 5f63d18 Removed unused import by Christian Heimes · 17 years ago
  4. 510711d Patch #1972 by Antoine Pitrou: improve bytes and bytearray tests by Christian Heimes · 17 years ago
  5. 7b87615 Fixed #1969: split and rsplit in bytearray are inconsistent by Christian Heimes · 17 years ago
  6. a37d4c6 Removed PyInt_GetMax and sys.maxint by Christian Heimes · 17 years ago
  7. 09121e8 Issue #1283: Allow any iterable of integers to be passed to bytearray.extend(). by Alexandre Vassalotti · 17 years ago
  8. b2b6262 Removed some leftovers from the str8 days by Christian Heimes · 17 years ago
  9. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  10. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  11. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
  12. ae404e2 Sort the method lists for str8 and bytes so differences are more apparent. by Guido van Rossum · 17 years ago
  13. bd1c68c Patch #1303: Adapt str8 constructor to bytes (now buffer) one. by Georg Brandl · 17 years ago
  14. 75a902d Patch 1280, by Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  15. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  16. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  17. bae07c9 Breaking ground for PEP 3137 implementation: by Guido van Rossum · 17 years ago
  18. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  19. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  20. 09549f4 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  21. 9c62772 Changes in anticipation of stricter str vs. bytes enforcement. by Guido van Rossum · 17 years ago
  22. eb29e9a Fix core dump in an endcase of b.strip() that I missed. by Guido van Rossum · 17 years ago
  23. 99603b0 Getting rid of cPickle. Mmm, feels good! by Guido van Rossum · 17 years ago
  24. e61fd5b Patch by Christian Heimes to change self.assert_(x == y) into by Guido van Rossum · 17 years ago
  25. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  26. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  27. 75d6f1a Fix tset_bytes.py. by Guido van Rossum · 17 years ago
  28. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  29. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  30. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  31. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  32. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  33. 13633bb Support name and mode attributes on all file types. by Guido van Rossum · 17 years ago
  34. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  35. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  36. 0ad0812 An example of action-at-a-distance: fix the problems I had in test_io.py by Guido van Rossum · 17 years ago
  37. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  38. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  39. c788554 Addendum of patch #1669633: additional tests for bytes methods. by Georg Brandl · 17 years ago
  40. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 17 years ago
  41. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 17 years ago
  42. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 18 years ago
  43. 00e41de Bytes literal. by Thomas Wouters · 18 years ago
  44. e2a383d Rip out 'long' and 'L'-suffixed integer literals. (Rough first cut.) by Guido van Rossum · 18 years ago
  45. 376446d Implement extended slicing in bytes objects. by Thomas Wouters · 18 years ago
  46. 9a6e62b Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop' by Thomas Wouters · 18 years ago
  47. d204a71 Make bytesobject raise ValueError instead of TypeError again (thanks, Nick) by Thomas Wouters · 18 years ago
  48. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  49. 08e8b7a Comment out debug print. by Guido van Rossum · 18 years ago
  50. 2018831 Adding bytes.join() -- a class methods that concatenates an iterable of bytes. by Guido van Rossum · 18 years ago
  51. 13e5721 Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes. by Guido van Rossum · 18 years ago
  52. d624f18 Added much functionality to the bytes type. by Guido van Rossum · 18 years ago
  53. e06b6b8 Fix a leak and a buglet discovered by Thomas. by Guido van Rossum · 18 years ago
  54. 5f6f27d Fix test_main function so test_bytes can be run by regrtest.py. by Thomas Wouters · 18 years ago
  55. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago