1. ce694b7 Fixed yet another compiler warning of 64bit builds. Reviewed by Georg Brandl. by Christian Heimes · 16 years ago
  2. 3ce5d92 Closes release blocker #3627. by Neal Norwitz · 16 years ago
  3. 20443f3 #3650: fix a reference leak in bytes.split('x') by Amaury Forgeot d'Arc · 16 years ago
  4. 423be95 Merged revisions 65654 via svnmerge from by Martin v. Löwis · 16 years ago
  5. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  6. 2f89aa6 #2538: bytes objects can only provide read-only buffers by Antoine Pitrou · 16 years ago
  7. b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
  8. 00709aa Merged revisions 63856-63857,63859-63860 via svnmerge from by Martin v. Löwis · 16 years ago
  9. e5d68ac Fix misspelling. by Georg Brandl · 16 years ago
  10. 17cb8a8 Fix all return types for str/bytes/bytearray docstrings and make the wording more consistent. by Georg Brandl · 16 years ago
  11. 4116f36 clean up some docstrings and errors in bytesobject.c by Benjamin Peterson · 16 years ago
  12. 2c9c7a5 Renamed files bytesobject.[ch] and stringobject.[ch] Fixed Windows build by Christian Heimes · 16 years ago
  13. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  14. 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
  15. 14a767d Made the TypeError message in bytes_iconcat() less confusing. by Alexandre Vassalotti · 16 years ago
  16. e0313f2 Re-indented bytes_getbuffer() and bytes_releasebuffer() to 4-space indents. by Alexandre Vassalotti · 16 years ago
  17. 8dcdb25 Improved bytes_extend() to avoid making a full copy of the temporary by Alexandre Vassalotti · 16 years ago
  18. 33fe809 Merged revisions 62260-62261,62266,62271,62277-62279,62289-62290,62293-62298,62302-62306,62308,62311,62313-62315,62319-62321 via svnmerge from by Christian Heimes · 16 years ago
  19. ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 16 years ago
  20. 7b87615 Fixed #1969: split and rsplit in bytearray are inconsistent by Christian Heimes · 17 years ago
  21. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  22. 1101940 typo by Skip Montanaro · 17 years ago
  23. 255f53b Merged revisions 59376-59406 via svnmerge from by Christian Heimes · 17 years ago
  24. a74169b Remove a few tab characters introduced by r59314. by Alexandre Vassalotti · 17 years ago
  25. 09121e8 Issue #1283: Allow any iterable of integers to be passed to bytearray.extend(). by Alexandre Vassalotti · 17 years ago
  26. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  27. 254348e Rename buffer -> bytearray. by Guido van Rossum · 17 years ago
  28. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  29. a6c04be Patch 1171 by mfenniak -- allow subclassing of bytes. by Guido van Rossum · 17 years ago
  30. ae404e2 Sort the method lists for str8 and bytes so differences are more apparent. by Guido van Rossum · 17 years ago
  31. a5d2d55 Patch 1335 by Christian Heimes. by Guido van Rossum · 17 years ago
  32. 61ec0d3 Fix some Py_ssize_t warnings on Win64 that were probably bugs by Neal Norwitz · 17 years ago
  33. 40d20bc Issue 1267, continued. by Guido van Rossum · 17 years ago
  34. 60d241f For PEP3137: Adds missing methods to the mutable PyBytes object (soon by Gregory P. Smith · 17 years ago
  35. 1e35e76 Patch #1049 by Thomas Lee. by Guido van Rossum · 17 years ago
  36. 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
  37. 8f95067 Bug # 1125 (my code). by Guido van Rossum · 17 years ago
  38. 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 17 years ago
  39. 16596dd Try to fix the problem on the Windows buildbot where this code: by Neal Norwitz · 17 years ago
  40. 18c3ff8 Make it an error to compare a bytes object and a Unicode object. by Jeremy Hylton · 17 years ago
  41. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  42. 2bad970 Make some internal functions static by Neal Norwitz · 17 years ago
  43. 75d38e9 Whitespace cleanup. by Guido van Rossum · 17 years ago
  44. faa54a3 Code review of the new buffer protocol. Mostly add questions that should by Neal Norwitz · 17 years ago
  45. 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
  46. eb29e9a Fix core dump in an endcase of b.strip() that I missed. by Guido van Rossum · 17 years ago
  47. 9c12106 Change PyUnicode_FromString[AndSize] to expect UTF-8. by Martin v. Löwis · 17 years ago
  48. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  49. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  50. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  51. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  52. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  53. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  54. 63eac15 The NULL pointer for empty strings turns out to be a pain. by Guido van Rossum · 17 years ago
  55. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  56. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  57. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  58. 6c1e674 Add trailing null bytes to a few more places. by Guido van Rossum · 17 years ago
  59. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  60. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  61. b6f1fdc Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  62. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago
  63. ebea9be Bytes should never equal unicode. Add tests for str <cmpop> bytes. by Guido van Rossum · 17 years ago
  64. 343e97f For Make Benefit Glorious Nation of Backwards Compatibility, by Guido van Rossum · 17 years ago
  65. 4fc8ae4 Fix off-by-one bug in memmove() call in bytes_insert(). by Guido van Rossum · 17 years ago
  66. 6968b05 SF patch #1669633, add methods for bytes from Pete Shinners. by Neal Norwitz · 17 years ago
  67. b3f568f Remove a few stray tabs from bytesobject.c. by Georg Brandl · 17 years ago
  68. 0b9b9e0 Implement bytes.fromhex(), with tests. by Georg Brandl · 17 years ago
  69. ee91be4 Make bytes_repr return a string containing a b"" literal. by Georg Brandl · 17 years ago
  70. 376446d Implement extended slicing in bytes objects. by Thomas Wouters · 18 years ago
  71. 9a6e62b Fix buglet in slice assignment of bytesobjects: assigning to b[3:0] ('stop' by Thomas Wouters · 18 years ago
  72. d204a71 Make bytesobject raise ValueError instead of TypeError again (thanks, Nick) by Thomas Wouters · 18 years ago
  73. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  74. 50e9fb9 Completely get rid of PyClass and PyInstance. by Guido van Rossum · 18 years ago
  75. 3cf5b1e Get rid of most of the flags (in tp_flags) that keep track of various by Guido van Rossum · 18 years ago
  76. 2018831 Adding bytes.join() -- a class methods that concatenates an iterable of bytes. by Guido van Rossum · 18 years ago
  77. a0867f7 Optimizations for bytes reallocation. by Guido van Rossum · 18 years ago
  78. 13e5721 Implement bytes += bytes, bytes *= int, int in bytes, bytes in bytes. by Guido van Rossum · 18 years ago
  79. d624f18 Added much functionality to the bytes type. by Guido van Rossum · 18 years ago
  80. e06b6b8 Fix a leak and a buglet discovered by Thomas. by Guido van Rossum · 18 years ago
  81. 4dfe8a1 Here is a bytes type. It's very minimal but it's a start. by Guido van Rossum · 18 years ago