1. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  2. 14176a5 Add missing #define. by Walter Dörwald · 17 years ago
  3. 4e618b7 Fix test: u prefixes are gone now. Test 'a' and b'a' instead. by Walter Dörwald · 17 years ago
  4. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  5. 5550731 Revert last checkin: _PyUnicode_New() allocates space by Walter Dörwald · 17 years ago
  6. 9992835 Allocate one more character, so that the terminating nullbyte can be copied. by Walter Dörwald · 17 years ago
  7. 68937b4 Change some uses of cStringIO.StringIO to io.StringIO. by Guido van Rossum · 17 years ago
  8. 7ac9d40 Protect abs__file__() from changes to sys.modules while it's running. by Guido van Rossum · 17 years ago
  9. 024da5c Make all the multibyte codec tests pass. by Guido van Rossum · 17 years ago
  10. f4cfc8f Make test_codecs work. The CJK codecs now use bytes instead of str8 for by Guido van Rossum · 17 years ago
  11. bbbd4fd Make test_new pass. by Guido van Rossum · 17 years ago
  12. 1a1f61b Make test_locale pass. by Guido van Rossum · 17 years ago
  13. f40e576 Make test__locale pass. Stupid bug in the original code: used 'is' for '=='. by Guido van Rossum · 17 years ago
  14. af199fa Allow encoding names to be unicode strings. by Guido van Rossum · 17 years ago
  15. 583118a Fix tests for string encodings. by Walter Dörwald · 17 years ago
  16. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  17. e35553e Fix io.StringIO for wide Python builds. by Walter Dörwald · 17 years ago
  18. 9d2ac22 Fix io.StringIO: String are stored encoded (using "unicode-internal" as the by Walter Dörwald · 17 years ago
  19. c9e363c Make test_subprocess pass. The subprocess module now reads and writes by Guido van Rossum · 17 years ago
  20. af2362a Make test_sys pass. by Guido van Rossum · 17 years ago
  21. 7f21d30 Make test_strop pass. (But shouldn't we kill strop?) by Guido van Rossum · 17 years ago
  22. 7ebb970 Make test_re pass. by Guido van Rossum · 17 years ago
  23. e108373 It's ok for __hex__ or __oct__ to return unicode. by Guido van Rossum · 17 years ago
  24. a45ea58 Make test_fileio.py work. by Guido van Rossum · 17 years ago
  25. ea0ebd8 Make test_str.py pass. by Guido van Rossum · 17 years ago
  26. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  27. a28c291 Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC() by Guido van Rossum · 17 years ago
  28. 0f0eb0b Kill two innocuous compiler warnings. by Guido van Rossum · 17 years ago
  29. 514a0f2 Obsubmit. by Guido van Rossum · 17 years ago
  30. c4afa10 Fix the picklevalue test; it broke due to the change in default protocol. by Guido van Rossum · 17 years ago
  31. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  32. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  33. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  34. 827b055 Change PyUnicode_EncodeCharmap() to return bytes objects by Walter Dörwald · 17 years ago
  35. aef90f4 Fix string test (was testing str twice). by Walter Dörwald · 17 years ago
  36. 711005d Change PyUnicode_EncodeRawUnicodeEscape() to return bytes by Walter Dörwald · 17 years ago
  37. db5d33e Reuse static global hexdigits array. by Walter Dörwald · 17 years ago
  38. 79e913e Change PyUnicode_EncodeUnicodeEscape() to return a bytes object. by Walter Dörwald · 17 years ago
  39. 1324c6f There's no longer a u prefix for unicode objects => drop it. by Walter Dörwald · 17 years ago
  40. b03ccc0 Simplify PyObject_Unicode(NULL) by using PyUnicode_FromString(). by Walter Dörwald · 17 years ago
  41. 0368b72 Merged revisions 55225-55227,55229-55269 via svnmerge from by Guido van Rossum · 17 years ago
  42. bdde011 Remove support for u"..." literals. by Guido van Rossum · 17 years ago
  43. 0ac30f8 Enhance the punycode decoder so that it can decode unicode objects. by Walter Dörwald · 17 years ago
  44. 1f05a3b Fix the array tests. Only a minor change to the C code was required. by Guido van Rossum · 17 years ago
  45. bce56a6 Fix some miscellaneous places that incorrectly insisted on str8. by Guido van Rossum · 17 years ago
  46. 3b116a3 Merged revisions 55228 via svnmerge from by Guido van Rossum · 17 years ago
  47. c3ab0a7 Use io.BytesIO instead of StringIO.StringIO in all by Walter Dörwald · 17 years ago
  48. 5205653 Merged revisions 55184-55224 via svnmerge from by Guido van Rossum · 17 years ago
  49. a4c6128 Fix punycode codec and tests. by Walter Dörwald · 17 years ago
  50. 5c4501a Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  51. 62b8871 Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  52. e2c8f2d Fix code depending on exception unpacking. by Guido van Rossum · 17 years ago
  53. 7fe7d1a Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  54. a5c313d Add to an XXX comment. by Guido van Rossum · 17 years ago
  55. 0e02abb Random modifications that slightly improve the chances of this not blowing up. by Guido van Rossum · 17 years ago
  56. ccf4f0f Use AsCharBuffer to get a C string out of a Python string. by Guido van Rossum · 17 years ago
  57. 83857e3 Use AsCharBuffer to get C strings out of Python strings. by Guido van Rossum · 17 years ago
  58. 63eac15 The NULL pointer for empty strings turns out to be a pain. by Guido van Rossum · 17 years ago
  59. d70539a Be more robust around bytes for e[st]#? formats. by Guido van Rossum · 17 years ago
  60. 6262cc7 More uniform approach to getting (UTF8) bytes out of a string. by Guido van Rossum · 17 years ago
  61. 33f3124 Support PEP-263-style coding declarations. Default to UTF-8 per PEP-3120. by Guido van Rossum · 17 years ago
  62. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  63. 0925e41 Forwardport checkin: by Walter Dörwald · 17 years ago
  64. 3699582 Fix trivial bug in idna encoding. by Guido van Rossum · 17 years ago
  65. 00048f0 test_codeccallbacks.py passes again. by Walter Dörwald · 17 years ago
  66. 580ceed Mention type in the exception message. by Walter Dörwald · 17 years ago
  67. e6d3904 Make test_marshal pass. Not my best work. :-( by Guido van Rossum · 17 years ago
  68. bc14efb Make the StringIO test pass. by Guido van Rossum · 17 years ago
  69. cfe5f20 Got test_pickletools and test_pickle working. by Guido van Rossum · 17 years ago
  70. f9e91c9 Given that ord() of a bytes object of length 1 is defined, it should by Guido van Rossum · 17 years ago
  71. 2b08b38 Fix a few places where a str instead of a bytes object was used. by Guido van Rossum · 17 years ago
  72. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  73. e5e80b8 Kill u"..." string quotes. Thought I already did that. by Guido van Rossum · 17 years ago
  74. b8142c3 Got test_exceptions.py working. by Guido van Rossum · 17 years ago
  75. 74302db Get rid of 'file' built-in. Get rid of types.StringType and friends. by Guido van Rossum · 17 years ago
  76. 317e774 Merged revisions 55180-55183 via svnmerge from by Guido van Rossum · 17 years ago
  77. 617dbc4 Checkpoint. A b it closer to working pickles and pickletools. by Guido van Rossum · 17 years ago
  78. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  79. 598d98a Initialized merge tracking via "svnmerge" with revisions "1-55006" from by Guido van Rossum · 17 years ago
  80. 32c38e7 Fix some trivial things in cPickle due to the renaming of the string types. by Guido van Rossum · 17 years ago
  81. 6cb726a Verify checkins to py3k branches go to 3000 list. by Neal Norwitz · 17 years ago
  82. a14c4bb Check whether the strlen() result overflows Py_ssize_t. by Walter Dörwald · 17 years ago
  83. 9bc4712 Add two more space tests. by Walter Dörwald · 17 years ago
  84. 20badb3 Remove duplicate tests. by Walter Dörwald · 17 years ago
  85. 51ab414 Change PyUnicode_EncodeUTF7() to return a bytes object. by Walter Dörwald · 17 years ago
  86. ce32db3 Silence gcc warnings. by Walter Dörwald · 17 years ago
  87. 071b9da When creating a unicode object from a char * characters by Walter Dörwald · 17 years ago
  88. db290f0 Fix %c overflow test. by Walter Dörwald · 17 years ago
  89. 67e8388 test_unicode.py passes again 9except for problems with the idna codec. by Walter Dörwald · 17 years ago
  90. acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 17 years ago
  91. 1255ed6 Much more pickling now works. by Guido van Rossum · 17 years ago
  92. 2e6a4b3 Checkpoint. Make pickle.py read/write bytes. by Guido van Rossum · 17 years ago
  93. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  94. c2b87a6 Don't use StringType -- always test for basestring. by Guido van Rossum · 17 years ago
  95. 7fcf224 Add 8-bit chr() back as chr8(). by Guido van Rossum · 17 years ago
  96. ca8a8d0 Make the BOM constants in codecs.py bytes. by Walter Dörwald · 17 years ago
  97. 3cc3452 Change PyUnicode_EncodeUTF16() so that it returns by Walter Dörwald · 17 years ago
  98. bf58bd6 Use basestring instead of (str, str8) to test whether cls is a module *name*. by Walter Dörwald · 17 years ago
  99. c8c8233 It's ok for __repr__ to return unicode. by Guido van Rossum · 17 years ago
  100. d7c43dd test_exceptions.py passes, except for pickling of course. by Guido van Rossum · 17 years ago