1. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  2. 9cd1775 Merged revisions 59005-59040 via svnmerge from by Christian Heimes · 17 years ago
  3. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  4. 98297ee Merging the py3k-pep3137 branch back into the py3k branch. by Guido van Rossum · 17 years ago
  5. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  6. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  7. daa251c Patch # 1302 by Christian Heimes (with some love from me :-). by Guido van Rossum · 17 years ago
  8. 5a2f7e60 Fix a broken format in a PyErr_Format() call: %lx is not supported. by Guido van Rossum · 17 years ago
  9. 94c2c75 Patch #1071: Improve unicode.translate() so that you can pass unicode by Georg Brandl · 17 years ago
  10. 4043001 Make str/str8 comparisons return True/False for !=/==. by Brett Cannon · 17 years ago
  11. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  12. 3d2fd7f Fix a small typo in the comment of unicode_default_encoding[]. by Alexandre Vassalotti · 17 years ago
  13. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  14. 70a2371 Remove the buffer API from PyUnicode as specified by PEP 3137. Also, by Alexandre Vassalotti · 17 years ago
  15. ddacf96 Eliminate use of PyBUF_CHARACTER flag which is no longer part of the buffer interface. Fix up array module to export the correct format for wide-builds. by Travis E. Oliphant · 17 years ago
  16. be801ac Delete bufferobject.[ch]. by Guido van Rossum · 17 years ago
  17. f104429 Patch # 1145 by Thomas Lee: by Guido van Rossum · 17 years ago
  18. 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
  19. c250493 Optimize unicode_hash() by not calling by Guido van Rossum · 17 years ago
  20. 4d02772 Micro optimizations after staring at gprof output for a while. by Guido van Rossum · 17 years ago
  21. f8c37d1 Restore caching of unicode hash value. This apparently was broken by Neil Schemenauer · 17 years ago
  22. 9cd1e09 Removed unicode_format and unicode__format__, they just called through to other functions. by Eric Smith · 17 years ago
  23. 06b8b02 Per Georg's suggestion, get rid of str.decode() (which always raises an by Guido van Rossum · 17 years ago
  24. 90d1fcd Change %s argument for PyUnicode_FromFormat to be UTF-8. Fixes #1070. by Martin v. Löwis · 17 years ago
  25. d2cf20e Remove the simple slicing API. All slicing is now done with slice objects. by Thomas Wouters · 17 years ago
  26. 2b65c75 Set startinpos before calling the error handler. by Walter Dörwald · 17 years ago
  27. a651d3d Rewrap line. by Walter Dörwald · 17 years ago
  28. b3cf6fd Oops, remove an abort() I put in for debugging. by Guido van Rossum · 17 years ago
  29. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  30. a74184e Commit strict str/bytes distinction. by Guido van Rossum · 17 years ago
  31. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago
  32. f6db409 Moved fieldnameiterator and formatteriterator to stringlib/string_format.h, so that they can be used when backporting to 2.6. by Eric Smith · 17 years ago
  33. 7a6dd29 Cleanup in anticipation of moving formatteriterator and fieldnameiterator into stringlib/string_format.h. by Eric Smith · 17 years ago
  34. 35d9428 There should be no codecs left that return str8 intead of bytes. by Guido van Rossum · 17 years ago
  35. ddd2582 Fixed accidental indentation change. by Eric Smith · 17 years ago
  36. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  37. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  38. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  39. a62db27 Restore an assert, but move it to the proper place. by Neal Norwitz · 17 years ago
  40. 571861d Remove assert that seems out of place. It triggers with test_string, by Neal Norwitz · 17 years ago
  41. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  42. e0a0a6e Since PyUnicode_AsString is a public API, don't just assert, but do by Neal Norwitz · 17 years ago
  43. 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
  44. 8d991ed Move some declarations before code, to compile with GCC 2.95. by Guido van Rossum · 17 years ago
  45. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  46. 0661009 Get rid of some dead code and unneeded XXX comments by Neal. by Guido van Rossum · 17 years ago
  47. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  48. ab40b30 Add comment that should be addressed by Neal Norwitz · 17 years ago
  49. 46fc337 PyErr_Warn is deprecated in 2.5 - goes away for 3.0 by Skip Montanaro · 17 years ago
  50. 36f938f Fix refleak: decref inputobj after extracting the relavant info (the object by Walter Dörwald · 17 years ago
  51. d474ce8 Remove references to unicode from help(str). by Collin Winter · 17 years ago
  52. 806c246 Merged revisions 56753-56781 via svnmerge from by Guido van Rossum · 17 years ago
  53. 9c12106 Change PyUnicode_FromString[AndSize] to expect UTF-8. by Martin v. Löwis · 17 years ago
  54. e78178e Bytes (which are the input for decoding) are mutable now. If a decoding by Walter Dörwald · 17 years ago
  55. 5d7428b Fix merge breakage. by Martin v. Löwis · 17 years ago
  56. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  57. 00058aa Fix a bug in PyUnicode_FromStringAndSize() with signed characters. by Guido van Rossum · 17 years ago
  58. b5a755e Merged revisions 56301-56442 via svnmerge from by Guido van Rossum · 17 years ago
  59. 307fa8c Three patches by Amaury Forgeot d'Arc; SF patch# 1754484. by Guido van Rossum · 17 years ago
  60. 8ac004e Make chr() and ord() return/accept surrogate pairs in narrow builds. by Guido van Rossum · 17 years ago
  61. e7a0d39 Fixed a refcount leak in _PyUnicode_AsDefaultEncodedString(). by Guido van Rossum · 17 years ago
  62. 55b4a7b Make test_descr.py pass. Had to disable a few tests, remove references by Guido van Rossum · 17 years ago
  63. 63a28be Silence GCC warning about uninitialzed variable. by Walter Dörwald · 17 years ago
  64. cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
  65. 755114a Make it compile with GCC 2.96. by Guido van Rossum · 17 years ago
  66. 26e0f51 Mention name of left operand, if "foo in unicode_string" fails. by Walter Dörwald · 17 years ago
  67. d7fb764 Add a format specifier %V to PyUnicode_FromFormat(), that works similar to %U, by Walter Dörwald · 17 years ago
  68. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  69. b41bb79 unichr() is named chr() now => fix name in error message. by Walter Dörwald · 17 years ago
  70. 346737f Add support for width, precision and zeropadding to the %d, %i, %u and %x by Walter Dörwald · 17 years ago
  71. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  72. 5c2fab6 Simplify %U handling by using Py_UNICODE_COPY. by Walter Dörwald · 17 years ago
  73. 1be7e3f Add a format character %S to PyUnicode_FromFormat() that by Walter Dörwald · 17 years ago
  74. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  75. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  76. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  77. 5550731 Revert last checkin: _PyUnicode_New() allocates space by Walter Dörwald · 17 years ago
  78. 9992835 Allocate one more character, so that the terminating nullbyte can be copied. by Walter Dörwald · 17 years ago
  79. 827b055 Change PyUnicode_EncodeCharmap() to return bytes objects by Walter Dörwald · 17 years ago
  80. 711005d Change PyUnicode_EncodeRawUnicodeEscape() to return bytes by Walter Dörwald · 17 years ago
  81. db5d33e Reuse static global hexdigits array. by Walter Dörwald · 17 years ago
  82. 79e913e Change PyUnicode_EncodeUnicodeEscape() to return a bytes object. by Walter Dörwald · 17 years ago
  83. 580ceed Mention type in the exception message. by Walter Dörwald · 17 years ago
  84. a14c4bb Check whether the strlen() result overflows Py_ssize_t. 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. acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 17 years ago
  89. 3cc3452 Change PyUnicode_EncodeUTF16() so that it returns by Walter Dörwald · 17 years ago
  90. 4355a47 Make all of test_bytes pass (except pickling, which is too badly busted). by Guido van Rossum · 17 years ago
  91. 09dc34f Compare and hash unicode objects like their UTF-8 representations. by Guido van Rossum · 17 years ago
  92. f15a29f More coding by random modification. 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. 84d79dd Disallow u"..." + b"..." and b"..." + u"...". by Guido van Rossum · 17 years ago
  96. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 17 years ago
  97. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  98. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  99. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  100. 49d6b07 Make the it_index field in the str/unicode iterators Py_ssize_t's. by Guido van Rossum · 18 years ago