1. ccc51c1 fix compiler warnings by Benjamin Peterson · 13 years ago
  2. 30134f5 Complete documentation of compact ASCII strings by Victor Stinner · 13 years ago
  3. b092365 Move in-place Unicode append to its own subfunction by Victor Stinner · 13 years ago
  4. a5f9163 Reindent internal Unicode macros by Victor Stinner · 13 years ago
  5. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  6. 9566311 resize_inplace() sets utf8_length to zero if the utf8 is not shared8 by Victor Stinner · 13 years ago
  7. 9e9d689 PyUnicode_New() sets utf8_length to zero for latin1 by Victor Stinner · 13 years ago
  8. 0169804 Unicode: raise SystemError instead of ValueError or RuntimeError on invalid by Victor Stinner · 13 years ago
  9. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  10. 0349091 Add _PyUnicode_HAS_WSTR_MEMORY() macro by Victor Stinner · 13 years ago
  11. 9ce5a83 PyUnicode_Join() checks output length in debug mode by Victor Stinner · 13 years ago
  12. b803895 Fix a compiler warning in PyUnicode_Append() by Victor Stinner · 13 years ago
  13. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  14. bbe7b0a Fix a few ResourceWarnings in idle by Amaury Forgeot d'Arc · 13 years ago
  15. c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
  16. 14f8f02 Fix PyUnicode_Partition(): str_in->str_obj by Victor Stinner · 13 years ago
  17. 31392e7 Fix my_basename(): make the string ready by Victor Stinner · 13 years ago
  18. b619bb2 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 13 years ago
  19. bb10a1f Ensure that newly created strings use the most efficient store in debug mode by Victor Stinner · 13 years ago
  20. 4d0d54b Document requierements of Unicode kinds by Victor Stinner · 13 years ago
  21. 9310abb Replace PyUnicodeObject* with PyObject* where it was inappropriate by Victor Stinner · 13 years ago
  22. ce5faf6 unicodeobject.c doesn't make output strings ready in debug mode by Victor Stinner · 13 years ago
  23. 55a190f merge from 3.2. Issue13104 - Fix urllib.request.thishost() utility function. by Senthil Kumaran · 13 years ago
  24. 91a076a merge from 3.2. Issue #13073 - Address the review comments made by Ezio. by Senthil Kumaran · 13 years ago
  25. 07de325 More fixes. by Georg Brandl · 13 years ago
  26. 7597add More typoes. by Georg Brandl · 13 years ago
  27. c6bc4c6 Fix a few typos in the unicode header. by Georg Brandl · 13 years ago
  28. 4975a9b Fix grammar. by Georg Brandl · 13 years ago
  29. c80d6d2 Speedup str[a:b:step] for step != 1 by Victor Stinner · 13 years ago
  30. ae86485 Speedup find_maxchar_surrogates() for 32-bit wchar_t by Victor Stinner · 13 years ago
  31. b9275c1 Speedup str[a:b] and PyUnicode_FromKindAndData by Victor Stinner · 13 years ago
  32. 702c734 Speedup the ASCII decoder by Victor Stinner · 13 years ago
  33. 00b2c86 Fix text failures when ctypes is not available by Antoine Pitrou · 13 years ago
  34. 4637309 Merge. by Charles-François Natali · 13 years ago
  35. 09252c4 os.geteuid() may not be available... by Charles-François Natali · 13 years ago
  36. e1335c7 Fix usage og PyUnicode_READY() by Victor Stinner · 13 years ago
  37. e06e145 _PyUnicode_READY_REPLACE() cannot be used in unicode_subtype_new() by Victor Stinner · 13 years ago
  38. 5f99c91 Issue #11956: Always skip test_import.test_unwritable_directory when run as by Charles-François Natali · 13 years ago
  39. 17efeed Add DONT_MAKE_RESULT_READY to unicodeobject.c to help detecting bugs by Victor Stinner · 13 years ago
  40. 6b56a7f Add assertion to _Py_ReleaseInternedUnicodeStrings() if READY fails by Victor Stinner · 13 years ago
  41. 875f29b Fix naïve heuristic in unicode slicing (followup to 1b4f886dc9e2) by Antoine Pitrou · 13 years ago
  42. 2b72f83 Merge. by Charles-François Natali · 13 years ago
  43. e39b112 Issue #11956: Skip test_import.test_unwritable_directory on FreeBSD when run as by Charles-François Natali · 13 years ago
  44. d9488c6 Merge by Antoine Pitrou · 13 years ago
  45. 2242522 Add a necessary call to PyUnicode_READY() (followup to ab5086539ab9) by Antoine Pitrou · 13 years ago
  46. 7aec401 Optimize string slicing to use the new API by Antoine Pitrou · 13 years ago
  47. a9860ae #13054: fix usage of sys.maxunicode after PEP-393. by Ezio Melotti · 13 years ago
  48. 77bb47b Simplify unicode_resizable(): singletons reference count is at least 2 by Victor Stinner · 13 years ago
  49. 8619cd7 Issue #13001: Fix test_socket.testRecvmsgTrunc failure on FreeBSD < 8, which by Charles-François Natali · 13 years ago
  50. 87b3c92 Introduce support.requires_freebsd_version decorator. by Charles-François Natali · 13 years ago
  51. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  52. 3cf4637 unicode_subtype_new() copies also the ascii flag by Victor Stinner · 13 years ago
  53. 42dfd71 unicode_kind_name() doesn't check consistency anymore by Victor Stinner · 13 years ago
  54. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  55. 1b4f9ce Create _PyUnicode_READY_REPLACE() to reuse singleton by Victor Stinner · 13 years ago
  56. c379ead Fix resize_compact() and resize_inplace(); reenable full resize optimizations by Victor Stinner · 13 years ago
  57. 34411e1 resize_inplace() has been fixed: reenable this optimization by Victor Stinner · 13 years ago
  58. a849a4b _PyUnicode_Dump() indicates if wstr and/or utf8 are shared by Victor Stinner · 13 years ago
  59. 1c8d0c7 Fix resize_inplace(): update shared utf8 pointer by Victor Stinner · 13 years ago
  60. ca4f7a4 Disable unicode_resize() optimization on Windows (16-bit wchar_t) by Victor Stinner · 13 years ago
  61. 126c559 _PyUnicode_Ready() for 16-bit wchar_t by Victor Stinner · 13 years ago
  62. 2fd8227 Fix compilation error on Windows by Victor Stinner · 13 years ago
  63. 5d0de3f Document message_body arg in HTTPConnection.endheaders by Senthil Kumaran · 13 years ago
  64. 86aed0b Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  65. d2a915d ceval.c: restore str+=str optimization by Victor Stinner · 13 years ago
  66. a3be613 Use PyUnicode_WCHAR_KIND to check if a string is a wstr string by Victor Stinner · 13 years ago
  67. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  68. 4fae54c In release mode, PyUnicode_InternInPlace() does nothing if the input is NULL or by Victor Stinner · 13 years ago
  69. 23e5668 PyUnicode_Append() now works in-place when it's possible by Victor Stinner · 13 years ago
  70. fe226c0 Rewrite PyUnicode_Resize() by Victor Stinner · 13 years ago
  71. 829c0ad Add _PyUnicode_HAS_UTF8_MEMORY() macro by Victor Stinner · 13 years ago
  72. 3794376 PyUnicode_READ_CHAR() ensures that the string is ready by Victor Stinner · 13 years ago
  73. fe0c155 Write _PyUnicode_Dump() to help debugging by Victor Stinner · 13 years ago
  74. f42dc44 PyUnicode_CopyCharacters() fails when copying latin1 into ascii by Victor Stinner · 13 years ago
  75. c53be96 unicode_convert_wchar_to_ucs4() cannot fail by Victor Stinner · 13 years ago
  76. c3c7415 Add _PyUnicode_DATA_ANY(op) private macro by Victor Stinner · 13 years ago
  77. a464fc1 unicode_empty and unicode_latin1 are PyObject* objects, not PyUnicodeObject* by Victor Stinner · 13 years ago
  78. 67002af Check error when calling PyUnicode_AppendAndDel() by Victor Stinner · 13 years ago
  79. 1a15aba PyCodec_ReplaceErrors() uses "C" format instead of "u#" to build result by Victor Stinner · 13 years ago
  80. 0069be1 merge from 3.2 - Document message_body arg in HTTPConnection.endheaders by Senthil Kumaran · 13 years ago
  81. 22cd021 Fix ResourceWarnings in the TIPC socket tests. by Antoine Pitrou · 13 years ago
  82. a8726c4 merge heads by Benjamin Peterson · 13 years ago
  83. 014cc42 remove unused label by Benjamin Peterson · 13 years ago
  84. 027f9a3 Issue #13084: Fix a test_signal failure: the delivery order is only defined for by Charles-François Natali · 13 years ago
  85. 6fe679f #13076: merge with 3.2. by Ezio Melotti · 13 years ago
  86. 35ec7f7 #13076: fix links to datetime.time and datetime.datetime. by Ezio Melotti · 13 years ago
  87. 267aa24 PyUnicode_FindChar() raises a IndexError on invalid index by Victor Stinner · 13 years ago
  88. bc603d1 Optimize _PyUnicode_AsKind() for UCS1->UCS4 and UCS2->UCS4 by Victor Stinner · 13 years ago
  89. 7a48ff7 Use Py_UCS1 instead of unsigned char in unicodeobject.h by Victor Stinner · 13 years ago
  90. 5a706cf Fix usage of PyUnicode_READY() in PyUnicode_GetLength() by Victor Stinner · 13 years ago
  91. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  92. 2fe5ced PyUnicode_ReadChar() raises a IndexError if the index in invalid by Victor Stinner · 13 years ago
  93. 202b62b PyUnicode_FromKindAndData() raises a ValueError if the kind is unknown by Victor Stinner · 13 years ago
  94. 1d30db4 merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  95. 791744b #4147: minidom's toprettyxml no longer adds whitespace to text nodes. by R David Murray · 13 years ago
  96. a02a12c Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  97. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  98. 07ac3eb Optimize unicode_subtype_new(): don't encode to wchar_t and decode from wchar_t by Victor Stinner · 13 years ago
  99. e90fe6a Add _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() macros by Victor Stinner · 13 years ago
  100. 87ae0a2 Backout of changeset 228fd2bd83a5 by Nadeem Vawda in branch 'default': by Antoine Pitrou · 13 years ago