1. 34411e1 resize_inplace() has been fixed: reenable this optimization by Victor Stinner · 13 years ago
  2. a849a4b _PyUnicode_Dump() indicates if wstr and/or utf8 are shared by Victor Stinner · 13 years ago
  3. 1c8d0c7 Fix resize_inplace(): update shared utf8 pointer by Victor Stinner · 13 years ago
  4. ca4f7a4 Disable unicode_resize() optimization on Windows (16-bit wchar_t) by Victor Stinner · 13 years ago
  5. 126c559 _PyUnicode_Ready() for 16-bit wchar_t by Victor Stinner · 13 years ago
  6. 2fd8227 Fix compilation error on Windows by Victor Stinner · 13 years ago
  7. d2a915d ceval.c: restore str+=str optimization by Victor Stinner · 13 years ago
  8. a3be613 Use PyUnicode_WCHAR_KIND to check if a string is a wstr string by Victor Stinner · 13 years ago
  9. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  10. 4fae54c In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL or by Victor Stinner · 13 years ago
  11. 23e5668 PyUnicode_Append() now works in-place when it's possible by Victor Stinner · 13 years ago
  12. fe226c0 Rewrite PyUnicode_Resize() by Victor Stinner · 13 years ago
  13. 829c0ad Add _PyUnicode_HAS_UTF8_MEMORY() macro by Victor Stinner · 13 years ago
  14. 3794376 PyUnicode_READ_CHAR() ensures that the string is ready by Victor Stinner · 13 years ago
  15. fe0c155 Write _PyUnicode_Dump() to help debugging by Victor Stinner · 13 years ago
  16. f42dc44 PyUnicode_CopyCharacters() fails when copying latin1 into ascii by Victor Stinner · 13 years ago
  17. c53be96 unicode_convert_wchar_to_ucs4() cannot fail by Victor Stinner · 13 years ago
  18. c3c7415 Add _PyUnicode_DATA_ANY(op) private macro by Victor Stinner · 13 years ago
  19. a464fc1 unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject* by Victor Stinner · 13 years ago
  20. 67002af Check error when calling PyUnicode_AppendAndDel() by Victor Stinner · 13 years ago
  21. 1a15aba PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build result by Victor Stinner · 13 years ago
  22. 0069be1 merge from 3.2 - Document message_body arg in HTTPConnection.endheaders by Senthil Kumaran · 13 years ago
  23. 5d0de3f Document message_body arg in HTTPConnection.endheaders by Senthil Kumaran · 13 years ago
  24. 22cd021 Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  25. 86aed0b Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  26. a8726c4 merge heads by Benjamin Peterson · 13 years ago
  27. 014cc42 remove unused label by Benjamin Peterson · 13 years ago
  28. 027f9a3 Issue #13084: Fix a test_signal failure: the delivery order is only defined for by Charles-François Natali · 13 years ago
  29. 6fe679f #13076: merge with 3.2. by Ezio Melotti · 13 years ago
  30. 35ec7f7 #13076: fix links to datetime.time and datetime.datetime. by Ezio Melotti · 13 years ago
  31. 267aa24 PyUnicode_FindChar() raises a IndexError on invalid index by Victor Stinner · 13 years ago
  32. bc603d1 Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4 by Victor Stinner · 13 years ago
  33. 7a48ff7 Use Py_UCS1 instead of unsigned char in unicodeobject.h by Victor Stinner · 13 years ago
  34. 5a706cf Fix usage of PyUnicode_READY() in PyUnicode_GetLength() by Victor Stinner · 13 years ago
  35. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  36. 2fe5ced PyUnicode_ReadChar() raises a IndexError if the index in invalid by Victor Stinner · 13 years ago
  37. 202b62b PyUnicode_FromKindAndData() raises a ValueError if the kind is unknown by Victor Stinner · 13 years ago
  38. 1d30db4 merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  39. 791744b #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  40. a02a12c Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  41. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  42. 07ac3eb Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t by Victor Stinner · 13 years ago
  43. e90fe6a Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macros by Victor Stinner · 13 years ago
  44. 87ae0a2 Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default': by Antoine Pitrou · 13 years ago
  45. 0b1d348 Issue 13085: Fix some memory leaks. Patch by Stefan Krah. by Martin v. Löwis · 13 years ago
  46. 5c0fb00 merge heads by Benjamin Peterson · 13 years ago
  47. 31616ea remove reference to non-existent file by Benjamin Peterson · 13 years ago
  48. de636f3 PyUnicode_Substring() now accepts end bigger than string length by Victor Stinner · 13 years ago
  49. 9f789e7 _PyUnicode_AsKind() is *not* part of the stable ABI by Victor Stinner · 13 years ago
  50. 811c2f1 remove "fast-path" for (i)adding strings by Benjamin Peterson · 13 years ago
  51. c759f3e Ooops, avoid a division by zero in unicode_repeat() by Victor Stinner · 13 years ago
  52. d3a83d5 PyUnicode_FromObject() ensures that its output is a ready string by Victor Stinner · 13 years ago
  53. 67ca64c I want a super fast 'a' * n! by Victor Stinner · 13 years ago
  54. 4584a5b PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE() 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. bec0fda Remove commented code: str+=str is no more super-optimized by Victor Stinner · 13 years ago
  59. 2219e0a PyUnicode_FromObject() reuses PyUnicode_Copy() by Victor Stinner · 13 years ago
  60. 9e5bd6c pyexat uses the new Unicode API by Victor Stinner · 13 years ago
  61. 2a1e926 Fix ResourceWarnings in makeunicodedata.py. by Ezio Melotti · 13 years ago
  62. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  63. b153615 PyUnicode_CopyCharacters() uses exceptions instead of assertions by Victor Stinner · 13 years ago
  64. 1fe99a2 Fix a compiler warning by Victor Stinner · 13 years ago
  65. 1fbcaef Fix array.array('u') constructor by Victor Stinner · 13 years ago
  66. eb5657a posix module catches PyUnicode_AsUnicode() failure by Victor Stinner · 13 years ago
  67. 8dba4e0 array module uses the new Unicode API by Victor Stinner · 13 years ago
  68. f8bb7d0 array module stores the typecode in a char, instead of Py_UNICODE by Victor Stinner · 13 years ago
  69. c806fdc raw_unicode_escape() uses the new Unicode API by Victor Stinner · 13 years ago
  70. 121aab4 Strip trailing spaces of _pickle.c by Victor Stinner · 13 years ago
  71. 6364927 PyLocale_strxfrm() uses the new Unicode API by Victor Stinner · 13 years ago
  72. fe9a861 fileio_init() checks for failure on conversion to Py_UNICODE* by Victor Stinner · 13 years ago
  73. ef17f12 Fix test_codeccallbacks for Windows: check size of wchar_t, not sys.maxunicode by Victor Stinner · 13 years ago
  74. 182d90d Fix test_codecs for Windows: check size of wchar_t, not sys.maxunicode by Victor Stinner · 13 years ago
  75. 734e159 Merge. by Charles-François Natali · 13 years ago
  76. 9624a76 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  77. 5a4a109 Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas by Charles-François Natali · 13 years ago
  78. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  79. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  80. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  81. ff1ef07 Re-enable test. by Martin v. Löwis · 13 years ago
  82. 2297066 Port normalization to new API. by Martin v. Löwis · 13 years ago
  83. f0ddadc Rename Py_BUILD_ASSERT to Py_BUILD_ASSERT_EXPR by Victor Stinner · 13 years ago
  84. 573696a pymacro.h: Inline _Py_ARRAY_LENGTH_CHECK() and add http://ccodearchive.net/ by Victor Stinner · 13 years ago
  85. 6f1ba07 Merge heads. by Ezio Melotti · 13 years ago
  86. 397546a Update and reorganize the whatsnew entry for PEP 393. by Ezio Melotti · 13 years ago
  87. 6430fd5 Fix hex_digit_to_int() prototype: expect Py_UCS4, not Py_UNICODE by Victor Stinner · 13 years ago
  88. d9c563e modsupport.c reuses Py_UNICODE_strlen() by Victor Stinner · 13 years ago
  89. 9d3579b Remove now useless redefinition of chr/ord for narrow builds in test_multibytecodec_support.py. by Ezio Melotti · 13 years ago
  90. f7b8cb6 _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODE by Victor Stinner · 13 years ago
  91. 0058b86 _sre: don't use Py_UNICODE anymore by Victor Stinner · 13 years ago
  92. 7d637ab Complete What's New in 3.3 about PEP 393 by Victor Stinner · 13 years ago
  93. f503673 Move UCS4-specific tests with the "normal" tests. by Ezio Melotti · 13 years ago
  94. dfb866d Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array by Victor Stinner · 13 years ago
  95. 2bdc7f5 Move code related to compile from Python.h to compile.h by Victor Stinner · 13 years ago
  96. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  97. b9dcffb Fix 'c' format of PyUnicode_Format() by Victor Stinner · 13 years ago
  98. c17f540 Oops, fix my previous commit: unicode => to by Victor Stinner · 13 years ago
  99. b15d4d8 PyUnicode_CopyCharacters() marks the string as dirty (reset the hash) by Victor Stinner · 13 years ago
  100. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago