1. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  2. f93254d Fix test_pickle, by reverting the string opcodes (S, T, U) to returning by Guido van Rossum · 17 years ago
  3. 00058aa Fix a bug in PyUnicode_FromStringAndSize() with signed characters. by Guido van Rossum · 17 years ago
  4. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  5. 10a60b3 Change Py_BuildValue to generate Unicode objects for by Martin v. Löwis · 17 years ago
  6. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  7. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  8. e7a0d39 Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). by Guido van Rossum · 17 years ago
  9. ace8ba8 Revert a wrong commit. by Thomas Heller · 17 years ago
  10. f630dac Must create heaptypes with unicode names. by Thomas Heller · 17 years ago
  11. 3b64580 Remove unused local variable. by Thomas Heller · 17 years ago
  12. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  13. a1cdfd9 Fix a subtle bug in PyString_Repr(). by Guido van Rossum · 17 years ago
  14. 7104458 Change float.__getformat__() to return a unicode string. by Walter Dörwald · 17 years ago
  15. 63a28be Silence GCC warning about uninitialzed variable. by Walter Dörwald · 17 years ago
  16. 32a4c71 Patch by Ron Adam: Don't use u prefix in unicode error messages by Walter Dörwald · 17 years ago
  17. 7eaf822 Merged revisions 55962-56019 via svnmerge from by Guido van Rossum · 17 years ago
  18. 7611d1d Patch by Ron Adam to make repr(str8(...)) return something looking like by Guido van Rossum · 17 years ago
  19. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  20. fa33163 Discard unused function. by Guido van Rossum · 17 years ago
  21. 755114a Make it compile with GCC 2.96. by Guido van Rossum · 17 years ago
  22. da5b8f2 Rip out the file object's implementation. by Guido van Rossum · 17 years ago
  23. 26e0f51 Mention name of left operand, if "foo in unicode_string" fails. by Walter Dörwald · 17 years ago
  24. 5397039 Minimal changes to make the "freeze" tool work again. by Guido van Rossum · 17 years ago
  25. d7fb764 Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, by Walter Dörwald · 17 years ago
  26. 7516360 Simplify error formatting and type_repr(). by Walter Dörwald · 17 years ago
  27. d376dd9 Simplify error formatting. by Walter Dörwald · 17 years ago
  28. a29d1d7 Simplify error formatting (no default encoding required). by Walter Dörwald · 17 years ago
  29. 7815c5e Check unicode identifier directly instead of converting by Walter Dörwald · 17 years ago
  30. 4dbd01b __module__ is a unicode string now: by Walter Dörwald · 17 years ago
  31. 9b9905b Expect unicode in class_name. by Martin v. Löwis · 17 years ago
  32. 826b9dd Fix getclassname. Fixes test_descrtut. by Martin v. Löwis · 17 years ago
  33. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  34. 3d1d712 Don't lie in error messages from str8. by Guido van Rossum · 17 years ago
  35. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  36. 933daed Use PyUnicode_FromFormat() directly. by Walter Dörwald · 17 years ago
  37. b41bb79 unichr() is named chr() now => fix name in error message. by Walter Dörwald · 17 years ago
  38. 233ccf2 Change int_oct() and int_hex() to return unicode objects. by Walter Dörwald · 17 years ago
  39. 787b03b PyUnicode_FromFormat() does support %02x, so use it by Walter Dörwald · 17 years ago
  40. 7696ed7 Change float.__str__() and complex.__str__() to return unicode objects. by Walter Dörwald · 17 years ago
  41. 346737f Add support for width, precision and zeropadding to the %d, %i, %u and %x by Walter Dörwald · 17 years ago
  42. 29478ef Merged revisions 55588-55630 via svnmerge from by Guido van Rossum · 17 years ago
  43. f5bec7c Change tp_str implementations of exception classes to return unicode strings. by Walter Dörwald · 17 years ago
  44. adee45e Merged revisions 55545-55587 via svnmerge from by Guido van Rossum · 17 years ago
  45. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  46. 5c2fab6 Simplify %U handling by using Py_UNICODE_COPY. by Walter Dörwald · 17 years ago
  47. 6f376c4 Enable new I/O. Disable creation of old files. by Guido van Rossum · 17 years ago
  48. 1be7e3f Add a format character %S to PyUnicode_FromFormat() that by Walter Dörwald · 17 years ago
  49. 4581ae5 Make test_base64 pass. by Guido van Rossum · 17 years ago
  50. d59da4b Merged revisions 55407-55513 via svnmerge from by Guido van Rossum · 17 years ago
  51. 4ad9421 Rename test_xrange.py to test_range.py and fix the type name in various spots. by Walter Dörwald · 17 years ago
  52. 03b43d8 repr(range(10)) now returns 'range(0, 10)' for clarity. by Walter Dörwald · 17 years ago
  53. 850e516 Change range_repr() to use %R for the start/stop/step attributes. by Walter Dörwald · 17 years ago
  54. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  55. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  56. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  57. 5550731 Revert last checkin: _PyUnicode_New() allocates space by Walter Dörwald · 17 years ago
  58. 9992835 Allocate one more character, so that the terminating nullbyte can be copied. by Walter Dörwald · 17 years ago
  59. bbbd4fd Make test_new pass. by Guido van Rossum · 17 years ago
  60. ebe3e16 Merged revisions 55342-55406 via svnmerge from by Guido van Rossum · 17 years ago
  61. 2be161d Make tset_float pass. float(<unicode>) was never very good -- it used by Guido van Rossum · 17 years ago
  62. a28c291 Add what looks like a necessary call to PyErr_NoMemory() when PyMem_MALLOC() by Guido van Rossum · 17 years ago
  63. 0f0eb0b Kill two innocuous compiler warnings. by Guido van Rossum · 17 years ago
  64. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  65. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  66. 827b055 Change PyUnicode_EncodeCharmap() to return bytes objects by Walter Dörwald · 17 years ago
  67. 711005d Change PyUnicode_EncodeRawUnicodeEscape() to return bytes by Walter Dörwald · 17 years ago
  68. db5d33e Reuse static global hexdigits array. by Walter Dörwald · 17 years ago
  69. 79e913e Change PyUnicode_EncodeUnicodeEscape() to return a bytes object. by Walter Dörwald · 17 years ago
  70. b03ccc0 Simplify PyObject_Unicode(NULL) by using PyUnicode_FromString(). by Walter Dörwald · 17 years ago
  71. 3b116a3 Merged revisions 55228 via svnmerge from by Guido van Rossum · 17 years ago
  72. 63eac15 The NULL pointer for empty strings turns out to be a pain. by Guido van Rossum · 17 years ago
  73. cd6ae68 I don't know how come bytes.join() was a class method, but that's clearly by Guido van Rossum · 17 years ago
  74. 580ceed Mention type in the exception message. by Walter Dörwald · 17 years ago
  75. bc14efb Make the StringIO test pass. by Guido van Rossum · 17 years ago
  76. 57b93ad repr(b"\0") should return b"\x00", not the (unusual) b"\0". by Guido van Rossum · 17 years ago
  77. 317e774 Merged revisions 55180-55183 via svnmerge from by Guido van Rossum · 17 years ago
  78. 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
  79. a14c4bb Check whether the strlen() result overflows Py_ssize_t. by Walter Dörwald · 17 years ago
  80. 51ab414 Change PyUnicode_EncodeUTF7() to return a bytes object. by Walter Dörwald · 17 years ago
  81. ce32db3 Silence gcc warnings. by Walter Dörwald · 17 years ago
  82. 071b9da When creating a unicode object from a char * characters by Walter Dörwald · 17 years ago
  83. acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 17 years ago
  84. 612344f Change UnicodeDecodeError objects so that the 'object' attribute by Walter Dörwald · 17 years ago
  85. 3cc3452 Change PyUnicode_EncodeUTF16() so that it returns by Walter Dörwald · 17 years ago
  86. c8c8233 It's ok for __repr__ to return unicode. by Guido van Rossum · 17 years ago
  87. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  88. 6c1e674 Add trailing null bytes to a few more places. by Guido van Rossum · 17 years ago
  89. 09dc34f Compare and hash unicode objects like their UTF-8 representations. by Guido van Rossum · 17 years ago
  90. f15a29f More coding by random modification. by Guido van Rossum · 17 years ago
  91. 5d7a700 Fix type name (str has been renamed to str8). by Walter Dörwald · 17 years ago
  92. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  93. 84fc66d Rename 'unicode' to 'str' in its tp_name field. Rename 'str' to 'str8'. by Guido van Rossum · 17 years ago
  94. 572dbf8 Checkpoint. Manipulated things so that string literals are always by Guido van Rossum · 17 years ago
  95. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  96. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  97. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  98. ad7d8d1 Rough and dirty job -- allow concatenation of bytes and arbitrary by Guido van Rossum · 17 years ago
  99. b6f1fdc Clean up trailing whitespace. by Guido van Rossum · 17 years ago
  100. 0dd32e2 Real pickling for bytes. Restore complex pickling. Use cPickle in io.py. by Guido van Rossum · 17 years ago