1. 6707293 Add consistency check to _PyUnicode_New() by Victor Stinner · 13 years ago
  2. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  3. 7a6debe remove some duplication by Benjamin Peterson · 13 years ago
  4. f5cff56 Issue #13088: Add shared Py_hexdigits constant to format a number into base 16 by Victor Stinner · 13 years ago
  5. f0b934b Reuse the stringlib in findchar(), and make its signature more convenient by Antoine Pitrou · 13 years ago
  6. 55c9911 Optimize unicode_subscript() for step != 1 and ascii strings by Victor Stinner · 13 years ago
  7. 127226b Don't use PyUnicode_MAX_CHAR_VALUE() macro in Py_MAX() by Victor Stinner · 13 years ago
  8. 9e7a1bc Optimize findchar() for PyUnicode_1BYTE_KIND: use memchr and memrchr by Victor Stinner · 13 years ago
  9. dd4e2f0 Issue #13155: Optimize finding the optimal character width of an unicode string by Antoine Pitrou · 13 years ago
  10. 49a0a21 Unicode replace() avoids calling unicode_adjust_maxchar() when it's useless by Victor Stinner · 13 years ago
  11. 983b143 Backed out changeset 952d91a7d376 by Victor Stinner · 13 years ago
  12. e55ad2d Relax condition by Antoine Pitrou · 13 years ago
  13. 4e10100 Fix compiler warning in _PyUnicode_FromUCS2() by Victor Stinner · 13 years ago
  14. 950468e Use _PyUnicode_CONVERT_BYTES() where applicable. by Antoine Pitrou · 13 years ago
  15. 577db2c PyUnicode_AsUnicodeCopy() now checks if PyUnicode_AsUnicode() failed by Victor Stinner · 13 years ago
  16. c4f281e Fix misuse of PyUnicode_GET_SIZE, use PyUnicode_GET_LENGTH instead by Victor Stinner · 13 years ago
  17. e459a08 Issue #13136: speed up conversion between different character widths. by Antoine Pitrou · 13 years ago
  18. 2871698 /* Remove unused code. It has been committed out since 2000 (!). */ by Antoine Pitrou · 13 years ago
  19. 53bb548 Avoid exporting private helpers (thanks "make smelly") by Antoine Pitrou · 13 years ago
  20. 794d567 any_find_slice() doesn't use callbacks anymore by Victor Stinner · 13 years ago
  21. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  22. eaf139b Fix typo in the PyUnicode_Find() implementation by Antoine Pitrou · 13 years ago
  23. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  24. dd07732 PyUnicode_Join() calls directly memcpy() if all strings are of the same kind by Victor Stinner · 13 years ago
  25. 978b9d2 Fix formatting memory consumption with very large padding specifications by Antoine Pitrou · 13 years ago
  26. 59de0ee str.replace(a, a) is now returning str unchanged if a is a by Victor Stinner · 13 years ago
  27. 5c0ba36 Fix massive slowdown in string formatting with the % operator by Antoine Pitrou · 13 years ago
  28. 7c46da7 Ensure that 1-char singletons get used by Antoine Pitrou · 13 years ago
  29. c6f0df7 Fix PyUnicode_Join() for len==1 and non-exact string by Victor Stinner · 13 years ago
  30. 15a66cf Fix compilation under Windows by Antoine Pitrou · 13 years ago
  31. 200f213 Fix assertion in unicode_adjust_maxchar() by Victor Stinner · 13 years ago
  32. acf47b8 Fix my last change on PyUnicode_Join(): don't process separator if len==1 by Victor Stinner · 13 years ago
  33. 25a4b29 str.replace() avoids memory when it's possible by Victor Stinner · 13 years ago
  34. 56c161a _copy_characters() fails more quickly in debug mode on inconsistent state by Victor Stinner · 13 years ago
  35. c729b8e Fix a compiler warning: don't define unicode_is_singleton() in release mode by Victor Stinner · 13 years ago
  36. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  37. 05d1189 Fix post-condition in unicode_repr(): check the result, not the input by Victor Stinner · 13 years ago
  38. f48323e replace() uses unicode_fromascii() if the input and replace string is ASCII by Victor Stinner · 13 years ago
  39. 0617b6e unicode_fromascii() checks that the input is ASCII in debug mode by Victor Stinner · 13 years ago
  40. c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
  41. 14f8f02 Fix PyUnicode_Partition(): str_in->str_obj by Victor Stinner · 13 years ago
  42. bb10a1f Ensure that newly created strings use the most efficient store in debug mode by Victor Stinner · 13 years ago
  43. 9310abb Replace PyUnicodeObject* with PyObject* where it was inappropriate by Victor Stinner · 13 years ago
  44. ce5faf6 unicodeobject.c doesn't make output strings ready in debug mode by Victor Stinner · 13 years ago
  45. 7597add More typoes. by Georg Brandl · 13 years ago
  46. c80d6d2 Speedup str[a:b:step] for step != 1 by Victor Stinner · 13 years ago
  47. ae86485 Speedup find_maxchar_surrogates() for 32-bit wchar_t by Victor Stinner · 13 years ago
  48. b9275c1 Speedup str[a:b] and PyUnicode_FromKindAndData by Victor Stinner · 13 years ago
  49. 702c734 Speedup the ASCII decoder by Victor Stinner · 13 years ago
  50. e1335c7 Fix usage og PyUnicode_READY() by Victor Stinner · 13 years ago
  51. e06e145 _PyUnicode_READY_REPLACE() cannot be used in unicode_subtype_new() by Victor Stinner · 13 years ago
  52. 17efeed Add DONT_MAKE_RESULT_READY to unicodeobject.c to help detecting bugs by Victor Stinner · 13 years ago
  53. 6b56a7f Add assertion to _Py_ReleaseInternedUnicodeStrings() if READY fails by Victor Stinner · 13 years ago
  54. 875f29b Fix naïve heuristic in unicode slicing (followup to 1b4f886dc9e2) by Antoine Pitrou · 13 years ago
  55. 2242522 Add a necessary call to PyUnicode_READY() (followup to ab5086539ab9) by Antoine Pitrou · 13 years ago
  56. 7aec401 Optimize string slicing to use the new API by Antoine Pitrou · 13 years ago
  57. e19aa38 When expandtabs() would be a no-op, don't create a duplicate string by Antoine Pitrou · 13 years ago
  58. e71d574 Migrate str.expandtabs to the new API by Antoine Pitrou · 13 years ago
  59. 7f3140e fix parens by Benjamin Peterson · 13 years ago
  60. 4bfce8f fix formatting by Benjamin Peterson · 13 years ago
  61. ccc51c1 fix compiler warnings by Benjamin Peterson · 13 years ago
  62. b092365 Move in-place Unicode append to its own subfunction by Victor Stinner · 13 years ago
  63. a5f9163 Reindent internal Unicode macros by Victor Stinner · 13 years ago
  64. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  65. 9566311 resize_inplace() sets utf8_length to zero if the utf8 is not shared8 by Victor Stinner · 13 years ago
  66. 9e9d689 PyUnicode_New() sets utf8_length to zero for latin1 by Victor Stinner · 13 years ago
  67. 0169804 Unicode: raise SystemError instead of ValueError or RuntimeError on invalid by Victor Stinner · 13 years ago
  68. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  69. 0349091 Add _PyUnicode_HAS_WSTR_MEMORY() macro by Victor Stinner · 13 years ago
  70. 9ce5a83 PyUnicode_Join() checks output length in debug mode by Victor Stinner · 13 years ago
  71. b803895 Fix a compiler warning in PyUnicode_Append() by Victor Stinner · 13 years ago
  72. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  73. 77bb47b Simplify unicode_resizable(): singletons reference count is at least 2 by Victor Stinner · 13 years ago
  74. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  75. 3cf4637 unicode_subtype_new() copies also the ascii flag by Victor Stinner · 13 years ago
  76. 42dfd71 unicode_kind_name() doesn't check consistency anymore by Victor Stinner · 13 years ago
  77. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  78. 1b4f9ce Create _PyUnicode_READY_REPLACE() to reuse singleton by Victor Stinner · 13 years ago
  79. c379ead Fix resize_compact() and resize_inplace(); reenable full resize optimizations by Victor Stinner · 13 years ago
  80. 34411e1 resize_inplace() has been fixed: reenable this optimization by Victor Stinner · 13 years ago
  81. a849a4b _PyUnicode_Dump() indicates if wstr and/or utf8 are shared by Victor Stinner · 13 years ago
  82. 1c8d0c7 Fix resize_inplace(): update shared utf8 pointer by Victor Stinner · 13 years ago
  83. ca4f7a4 Disable unicode_resize() optimization on Windows (16-bit wchar_t) by Victor Stinner · 13 years ago
  84. 126c559 _PyUnicode_Ready() for 16-bit wchar_t by Victor Stinner · 13 years ago
  85. 2fd8227 Fix compilation error on Windows by Victor Stinner · 13 years ago
  86. a3be613 Use PyUnicode_WCHAR_KIND to check if a string is a wstr string by Victor Stinner · 13 years ago
  87. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  88. 4fae54c In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL or by Victor Stinner · 13 years ago
  89. 23e5668 PyUnicode_Append() now works in-place when it's possible by Victor Stinner · 13 years ago
  90. fe226c0 Rewrite PyUnicode_Resize() by Victor Stinner · 13 years ago
  91. 829c0ad Add _PyUnicode_HAS_UTF8_MEMORY() macro by Victor Stinner · 13 years ago
  92. fe0c155 Write _PyUnicode_Dump() to help debugging by Victor Stinner · 13 years ago
  93. f42dc44 PyUnicode_CopyCharacters() fails when copying latin1 into ascii by Victor Stinner · 13 years ago
  94. c53be96 unicode_convert_wchar_to_ucs4() cannot fail by Victor Stinner · 13 years ago
  95. c3c7415 Add _PyUnicode_DATA_ANY(op) private macro by Victor Stinner · 13 years ago
  96. a464fc1 unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject* by Victor Stinner · 13 years ago
  97. 267aa24 PyUnicode_FindChar() raises a IndexError on invalid index by Victor Stinner · 13 years ago
  98. bc603d1 Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4 by Victor Stinner · 13 years ago
  99. 5a706cf Fix usage of PyUnicode_READY() in PyUnicode_GetLength() by Victor Stinner · 13 years ago
  100. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago