1. e71d574 Migrate str.expandtabs to the new API by Antoine Pitrou · 13 years ago
  2. 7f3140e fix parens by Benjamin Peterson · 13 years ago
  3. 4bfce8f fix formatting by Benjamin Peterson · 13 years ago
  4. ccc51c1 fix compiler warnings by Benjamin Peterson · 13 years ago
  5. b092365 Move in-place Unicode append to its own subfunction by Victor Stinner · 13 years ago
  6. a5f9163 Reindent internal Unicode macros by Victor Stinner · 13 years ago
  7. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  8. 9566311 resize_inplace() sets utf8_length to zero if the utf8 is not shared8 by Victor Stinner · 13 years ago
  9. 9e9d689 PyUnicode_New() sets utf8_length to zero for latin1 by Victor Stinner · 13 years ago
  10. 0169804 Unicode: raise SystemError instead of ValueError or RuntimeError on invalid by Victor Stinner · 13 years ago
  11. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  12. 0349091 Add _PyUnicode_HAS_WSTR_MEMORY() macro by Victor Stinner · 13 years ago
  13. 9ce5a83 PyUnicode_Join() checks output length in debug mode by Victor Stinner · 13 years ago
  14. b803895 Fix a compiler warning in PyUnicode_Append() by Victor Stinner · 13 years ago
  15. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  16. 77bb47b Simplify unicode_resizable(): singletons reference count is at least 2 by Victor Stinner · 13 years ago
  17. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  18. 3cf4637 unicode_subtype_new() copies also the ascii flag by Victor Stinner · 13 years ago
  19. 42dfd71 unicode_kind_name() doesn't check consistency anymore by Victor Stinner · 13 years ago
  20. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  21. 1b4f9ce Create _PyUnicode_READY_REPLACE() to reuse singleton by Victor Stinner · 13 years ago
  22. c379ead Fix resize_compact() and resize_inplace(); reenable full resize optimizations by Victor Stinner · 13 years ago
  23. 34411e1 resize_inplace() has been fixed: reenable this optimization by Victor Stinner · 13 years ago
  24. a849a4b _PyUnicode_Dump() indicates if wstr and/or utf8 are shared by Victor Stinner · 13 years ago
  25. 1c8d0c7 Fix resize_inplace(): update shared utf8 pointer by Victor Stinner · 13 years ago
  26. ca4f7a4 Disable unicode_resize() optimization on Windows (16-bit wchar_t) by Victor Stinner · 13 years ago
  27. 126c559 _PyUnicode_Ready() for 16-bit wchar_t by Victor Stinner · 13 years ago
  28. 2fd8227 Fix compilation error on Windows by Victor Stinner · 13 years ago
  29. a3be613 Use PyUnicode_WCHAR_KIND to check if a string is a wstr string by Victor Stinner · 13 years ago
  30. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  31. 4fae54c In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL or by Victor Stinner · 13 years ago
  32. 23e5668 PyUnicode_Append() now works in-place when it's possible by Victor Stinner · 13 years ago
  33. fe226c0 Rewrite PyUnicode_Resize() by Victor Stinner · 13 years ago
  34. 829c0ad Add _PyUnicode_HAS_UTF8_MEMORY() macro by Victor Stinner · 13 years ago
  35. fe0c155 Write _PyUnicode_Dump() to help debugging by Victor Stinner · 13 years ago
  36. f42dc44 PyUnicode_CopyCharacters() fails when copying latin1 into ascii by Victor Stinner · 13 years ago
  37. c53be96 unicode_convert_wchar_to_ucs4() cannot fail by Victor Stinner · 13 years ago
  38. c3c7415 Add _PyUnicode_DATA_ANY(op) private macro by Victor Stinner · 13 years ago
  39. a464fc1 unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject* by Victor Stinner · 13 years ago
  40. 267aa24 PyUnicode_FindChar() raises a IndexError on invalid index by Victor Stinner · 13 years ago
  41. bc603d1 Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4 by Victor Stinner · 13 years ago
  42. 5a706cf Fix usage of PyUnicode_READY() in PyUnicode_GetLength() by Victor Stinner · 13 years ago
  43. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  44. 2fe5ced PyUnicode_ReadChar() raises a IndexError if the index in invalid by Victor Stinner · 13 years ago
  45. 202b62b PyUnicode_FromKindAndData() raises a ValueError if the kind is unknown by Victor Stinner · 13 years ago
  46. 07ac3eb Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t by Victor Stinner · 13 years ago
  47. e90fe6a Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macros by Victor Stinner · 13 years ago
  48. 0b1d348 Issue 13085: Fix some memory leaks. Patch by Stefan Krah. by Martin v. Löwis · 13 years ago
  49. 5c0fb00 merge heads by Benjamin Peterson · 13 years ago
  50. 31616ea remove reference to non-existent file by Benjamin Peterson · 13 years ago
  51. de636f3 PyUnicode_Substring() now accepts end bigger than string length by Victor Stinner · 13 years ago
  52. c759f3e Ooops, avoid a division by zero in unicode_repeat() by Victor Stinner · 13 years ago
  53. d3a83d5 PyUnicode_FromObject() ensures that its output is a ready string by Victor Stinner · 13 years ago
  54. 67ca64c I want a super fast 'a' * n! by Victor Stinner · 13 years ago
  55. e9a2935 Fix usage of PyUnicode_READY in unicodeobject.c by Victor Stinner · 13 years ago
  56. 12bab6d Remove private substring() function, reuse public PyUnicode_Substring() by Victor Stinner · 13 years ago
  57. c841e7d Optimize PyUnicode_Copy(): don't recompute maximum character by Victor Stinner · 13 years ago
  58. 2219e0a PyUnicode_FromObject() reuses PyUnicode_Copy() by Victor Stinner · 13 years ago
  59. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  60. b153615 PyUnicode_CopyCharacters() uses exceptions instead of assertions by Victor Stinner · 13 years ago
  61. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  62. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  63. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  64. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  65. b9dcffb Fix 'c' format of PyUnicode_Format() by Victor Stinner · 13 years ago
  66. c17f540 Oops, fix my previous commit: unicode => to by Victor Stinner · 13 years ago
  67. b15d4d8 PyUnicode_CopyCharacters() marks the string as dirty (reset the hash) by Victor Stinner · 13 years ago
  68. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  69. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  70. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  71. 506f592 Check size of wchar_t using the preprocessor by Victor Stinner · 13 years ago
  72. 73f01c6 PyUnicode_CopyCharacters() initializes overflow by Victor Stinner · 13 years ago
  73. e57b1c0 Mark PyUnicode_FromUCS[124] as private by Victor Stinner · 13 years ago
  74. ff9e50f Oops, fix Py_MIN/Py_MAX case by Victor Stinner · 13 years ago
  75. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  76. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  77. 6c7a52a Check for PyUnicode_CopyCharacters() failure by Victor Stinner · 13 years ago
  78. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  79. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  80. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  81. 9c6e6a0 don't check that the first character is XID_Continue by Benjamin Peterson · 13 years ago
  82. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  83. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 13 years ago
  84. 0d5f6ad Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines. by Mark Dickinson · 13 years ago
  85. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 13 years ago
  86. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  87. 6f2a683 #9200: merge with 3.2. by Ezio Melotti · 13 years ago
  88. 93e7afc #9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds. by Ezio Melotti · 13 years ago
  89. e518d4c merge 3.2 by Benjamin Peterson · 13 years ago
  90. 7a6b44a the named of the character is actually NUL by Benjamin Peterson · 13 years ago
  91. 020340f merge 3.2 by Benjamin Peterson · 13 years ago
  92. 5ad517a NUL -> NULL by Benjamin Peterson · 13 years ago
  93. 269e3ee #12266: merge with 3.2. by Ezio Melotti · 13 years ago
  94. ee8d998 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 13 years ago
  95. f8e7543 merge 3.2 (#12732) by Benjamin Peterson · 13 years ago
  96. f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) by Benjamin Peterson · 13 years ago
  97. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  98. fcdaaa9 merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  99. 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  100. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago