1. a726192 oops, remove _PyObject_ReprWriter() definition (unwanted change) by Victor Stinner · 11 years ago
  2. 4a58707 Add _PyUnicodeWriter_WriteASCIIString() function by Victor Stinner · 11 years ago
  3. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 11 years ago
  4. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  5. f476405 fix typo in a comment by Victor Stinner · 11 years ago
  6. 8f674cc Close #17694: Add minimum length to _PyUnicodeWriter by Victor Stinner · 11 years ago
  7. a0dd021 Close #17693: Rewrite CJK decoders to use the _PyUnicodeWriter API instead of by Victor Stinner · 11 years ago
  8. cfc4c13 Add _PyUnicodeWriter_WriteSubstring() function by Victor Stinner · 11 years ago
  9. d45c7f8 Issue #16455: On FreeBSD and Solaris, if the locale is C, the by Victor Stinner · 12 years ago
  10. 76df43d Issue #16330: Use surrogate-related macros by Victor Stinner · 12 years ago
  11. e215d96 Issue #16147: Rewrite PyUnicode_FromFormatV() to use _PyUnicodeWriter API by Victor Stinner · 12 years ago
  12. 080a2c0 #16127: merge with 3.3. by Ezio Melotti · 12 years ago
  13. e7f9037 #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  14. 90db9c4 Enable also ptr==ptr optimization in PyUnicode_Compare() by Victor Stinner · 12 years ago
  15. 27f6a3b Issue #15026: utf-16 encoding is now significantly faster (up to 10x). by Antoine Pitrou · 12 years ago
  16. d7b7c74 Issue #14993: Use standard "unsigned char" instead of a unsigned char bitfield by Victor Stinner · 12 years ago
  17. d3f0882 Issue #14744: Use the new _PyUnicodeWriter internal API to speed up str%args and str.format(args) by Victor Stinner · 12 years ago
  18. ece58de Close #14648: Compute correctly maxchar in str.format() for substrin by Victor Stinner · 12 years ago
  19. c9590ad Close #14085: remove assertions from PyUnicode_WRITE macro by Victor Stinner · 12 years ago
  20. 41a863c Issue #13706: Fix format(int, "n") for locale with non-ASCII thousands separator by Victor Stinner · 12 years ago
  21. ed27785 Issue #13706: Add assertions to detect bugs earlier by Victor Stinner · 12 years ago
  22. 7ab4af0 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 12 years ago
  23. 1334884 Issue #13848: open() and the FileIO constructor now check for NUL characters in the file name. by Antoine Pitrou · 12 years ago
  24. ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 12 years ago
  25. d5890c8 add str.casefold() (closes #13752) by Benjamin Peterson · 12 years ago
  26. 77b1ecf Silence compilation warnings on Windows by Amaury Forgeot d'Arc · 12 years ago
  27. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  28. 3fe5531 Add a new PyUnicode_Fill() function by Victor Stinner · 13 years ago
  29. 80bc72d fix PyCompactUnicodeObject doc (test) by Victor Stinner · 13 years ago
  30. 52e2cc8 backout 7876cd49300d: Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 13 years ago
  31. 0ba5af2 Move PyUnicode_WCHAR_KIND outside PyUnicode_Kind enum by Victor Stinner · 13 years ago
  32. 1b57967 Issue #13560: Locale codec functions use the classic "errors" parameter, by Victor Stinner · 13 years ago
  33. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
  34. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  35. 16e6a80 PyUnicode_Resize(): warn about canonical representation by Victor Stinner · 13 years ago
  36. b0a82a6 Fix PyUnicode_Resize() for compact string: leave the string unchanged on error by Victor Stinner · 13 years ago
  37. bf6e560 Make PyUnicode_Copy() private => _PyUnicode_Copy() by Victor Stinner · 13 years ago
  38. 7a9105a resize_copy() now supports legacy ready strings by Victor Stinner · 13 years ago
  39. 24c74be PyUnicode_IS_ASCII() macro ensures that the string is ready by Victor Stinner · 13 years ago
  40. 551ac95 Py_UNICODE_HIGH_SURROGATE() and Py_UNICODE_LOW_SURROGATE() macros by Victor Stinner · 13 years ago
  41. f3ae620 PyUnicode_GET_SIZE() checks that PyUnicode_AsUnicode() succeed by Victor Stinner · 13 years ago
  42. 77faf69 _PyUnicode_CheckConsistency() also checks maxchar maximum value, by Victor Stinner · 13 years ago
  43. 9343999 Fix PyUnicode_CopyCharacters() doc by Victor Stinner · 13 years ago
  44. 7c8bbbb Ensure that Py_UCS4 is 32 bits and Py_UCS2 is 16 bits by Victor Stinner · 13 years ago
  45. 6f9568b Fix misused of "PyUnicodeObject" structure name in unicodeobject.h by Victor Stinner · 13 years ago
  46. 1db7c13 Port encoders from Py_UNICODE API to unicode object API. by Martin v. Löwis · 13 years ago
  47. d10759f Make _PyUnicode_FromId return borrowed references. by Martin v. Löwis · 13 years ago
  48. e30c0a1 Fix gdb/libpython.py for not ready Unicode strings by Victor Stinner · 13 years ago
  49. 7931d9a Replace PyUnicodeObject type by PyObject by Victor Stinner · 13 years ago
  50. 23e275b Port UCS1 and charmap codecs to new API. by Martin v. Löwis · 13 years ago
  51. 0d3072e Drop Py_UCS4_ functions. Closes #13246. by Martin v. Löwis · 13 years ago
  52. 9db1a8b Replace PyUnicodeObject* by PyObject* where it was irrevelant by Victor Stinner · 13 years ago
  53. 55c7e00 Simplify _PyUnicode_COMPACT_DATA() macro by Victor Stinner · 13 years ago
  54. 3a50e70 Issue #12281: Rewrite the MBCS codec to handle correctly replace and ignore by Victor Stinner · 13 years ago
  55. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  56. 8813104 Simplify PyUnicode_MAX_CHAR_VALUE by Victor Stinner · 13 years ago
  57. 87da872 Drop extra semicolon. by Martin v. Löwis · 13 years ago
  58. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  59. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  60. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  61. b066cc6 Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE by Victor Stinner · 13 years ago
  62. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  63. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  64. 1d4b35f rephrase PyUnicode_1BYTE_KIND documentation by Victor Stinner · 13 years ago
  65. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  66. 80a348c Fix typo by Éric Araujo · 13 years ago
  67. 30134f5 Complete documentation of compact ASCII strings by Victor Stinner · 13 years ago
  68. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  69. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  70. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  71. c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
  72. 4d0d54b Document requierements of Unicode kinds by Victor Stinner · 13 years ago
  73. 07de325 More fixes. by Georg Brandl · 13 years ago
  74. c6bc4c6 Fix a few typos in the unicode header. by Georg Brandl · 13 years ago
  75. 4975a9b Fix grammar. by Georg Brandl · 13 years ago
  76. b9275c1 Speedup str[a:b] and PyUnicode_FromKindAndData by Victor Stinner · 13 years ago
  77. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  78. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  79. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  80. 3794376 PyUnicode_READ_CHAR() ensures that the string is ready by Victor Stinner · 13 years ago
  81. 7a48ff7 Use Py_UCS1 instead of unsigned char in unicodeobject.h by Victor Stinner · 13 years ago
  82. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  83. 9f789e7 _PyUnicode_AsKind() is *not* part of the stable ABI by Victor Stinner · 13 years ago
  84. 4584a5b PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE() by Victor Stinner · 13 years ago
  85. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  86. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  87. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  88. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  89. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  90. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  91. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  92. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  93. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  94. 5ce1b0d Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE by Victor Stinner · 13 years ago
  95. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  96. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 13 years ago
  97. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  98. 8c9375b #10542: Add 4 macros to work with surrogates: Py_UNICODE_IS_SURROGATE, Py_UNICODE_IS_HIGH_SURROGATE, Py_UNICODE_IS_LOW_SURROGATE, Py_UNICODE_JOIN_SURROGATES. by Ezio Melotti · 13 years ago
  99. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  100. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago