1. 9089a26 bpo-29240: PyUnicode_DecodeLocale() uses UTF-8 on Android (#5272) by Victor Stinner · 7 years ago
  2. 7ed7aea bpo-29240: Fix locale encodings in UTF-8 Mode (#5170) by Victor Stinner · 7 years ago
  3. e613e6a bpo-30708: Check for null characters in PyUnicode_AsWideCharString(). (#2285) by Serhiy Storchaka · 7 years ago
  4. 88c38b3 bpo-28415: Note 0 conversion different between Python and C (#885) by Louie Lu · 7 years ago
  5. 84b8e92 bpo-29918: Add missed "const" modifiers in C API documentation. (#846) by Serhiy Storchaka · 8 years ago
  6. c85a266 bpo-28749: Fixed the documentation of the mapping codec APIs. (#487) by Serhiy Storchaka · 8 years ago
  7. 2a404b6 Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8() by Serhiy Storchaka · 8 years ago
  8. fc60083 Issue #29087: Removed the documentation of non-existing UCS4 support functions. by Serhiy Storchaka · 8 years ago
  9. 44223e9 Issue #29087: Removed the documentation of non-existing UCS4 support functions. by Serhiy Storchaka · 8 years ago
  10. af9181a Issue #29087: Removed the documentation of non-existing UCS4 support functions. by Serhiy Storchaka · 8 years ago
  11. b211068 Issue #28822: Adjust indices handling of PyUnicode_FindChar(). by Xiang Zhang · 8 years ago
  12. 47888da Issue #29009: Merge 3.5. by Xiang Zhang · 8 years ago
  13. bfbc29c Issue #29009: Remove outdated doc of PyUnicode_RichCompare. by Xiang Zhang · 8 years ago
  14. 419967b Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 8 years ago
  15. 9a953db Issue #28808: PyUnicode_CompareWithASCIIString() now never raises exceptions. by Serhiy Storchaka · 8 years ago
  16. 01452af Issue #28750: Fixed docs of of unicode-escape an raw-unicode-escape C API. by Serhiy Storchaka · 8 years ago
  17. cf36835 Issue #28750: Fixed docs of of unicode-escape an raw-unicode-escape C API. by Serhiy Storchaka · 8 years ago
  18. 92b9a1f Issue #19569: Suggested more appropriate replacements for deprecated Unicode by Serhiy Storchaka · 8 years ago
  19. f675a37 Issue #19569: Suggested more appropriate replacements for deprecated Unicode by Serhiy Storchaka · 8 years ago
  20. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  21. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  22. 159f97b Issue #28496: Mark up constants 0, 1 and -1 that denote return values or by Serhiy Storchaka · 8 years ago
  23. 1ecf7d2 Issue #28496: Mark up constants 0, 1 and -1 that denote return values or by Serhiy Storchaka · 8 years ago
  24. 989db5c Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 8 years ago
  25. ecf41da Issue #19795: Mark up None as literal text. by Serhiy Storchaka · 8 years ago
  26. b8bddec Issue #28432: Merge from 3.5 by Berker Peksag · 8 years ago
  27. 90e0289 Issue #28432: Fix first parameter name in PyUnicode_EncodeLocale documentation by Berker Peksag · 8 years ago
  28. 21d9f10 Merge from 3.5. by Serhiy Storchaka · 8 years ago
  29. 9c0e1f8 Issue #28379: Added sanity checks and tests for PyUnicode_CopyCharacters(). by Serhiy Storchaka · 8 years ago
  30. b364857 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  31. cc16423 Issue #28295: Fixed the documentation and added tests for PyUnicode_AsUCS4(). by Serhiy Storchaka · 8 years ago
  32. cc16be8 Issue #27781: Change file system encoding on Windows to UTF-8 (PEP 529) by Steve Dower · 8 years ago
  33. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  34. a571120 Issue #27182: Add support for path-like objects to PyUnicode_FSDecoder(). by Brett Cannon · 8 years ago
  35. ec6ce87 Issue #26027: Support path-like objects in PyUnicode-FSConverter(). by Brett Cannon · 8 years ago
  36. ed4aa83 require a long long data type (closes #27961) by Benjamin Peterson · 8 years ago
  37. 544ae59 Issue #18353: Remove PyUnicode_WRITE_CHAR macro link from c-api/unicode.rst by Berker Peksag · 8 years ago
  38. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  39. 20d3255 Issue #15984: Correct PyUnicode_FromObject() and _FromEncodedObject() docs by Martin Panter · 8 years ago
  40. 6245cb3 Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc by Martin Panter · 8 years ago
  41. cd881b8 Fixed documentation of functions with const char* arguments. by Serhiy Storchaka · 9 years ago
  42. 03863d2 Fixed documentation of functions with const char* arguments. by Serhiy Storchaka · 9 years ago
  43. 812bc1b Merge: #23088: Clarify null termination of bytes and strings in C API. by R David Murray · 9 years ago
  44. 0a560a1 #23088: Clarify null termination of bytes and strings in C API. by R David Murray · 9 years ago
  45. 3be472b Closes #23181: codepoint -> code point by Georg Brandl · 10 years ago
  46. 92bf919 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  47. b757c83 Issue #22581: Use more "bytes-like object" throughout the docs and comments. by Serhiy Storchaka · 10 years ago
  48. 8786ea3 (Merge 3.4) Closes #22580: Fix documentation of PyUnicode_Tailmatch() by Victor Stinner · 10 years ago
  49. 13d3aa5 Closes #22580: Fix documentation of PyUnicode_Tailmatch() by Victor Stinner · 10 years ago
  50. f6a271a Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename by Victor Stinner · 10 years ago
  51. 102488b args doesn't need to be a tuple (closes #17210) by Benjamin Peterson · 10 years ago
  52. d3faf43 Issue #23181: More "codepoint" -> "code point". by Serhiy Storchaka · 10 years ago
  53. 780b585 Quash extraneous quote. by Zachary Ware · 10 years ago
  54. d51f423 Issue 19195: Improved cross-references in C API documentation. by Serhiy Storchaka · 11 years ago
  55. 0b68a2d Issue 19195: Improved cross-references in C API documentation. by Serhiy Storchaka · 11 years ago
  56. 0738aff Fix a typo in PyUnicode_CopyCharacters() documentation. by Serhiy Storchaka · 11 years ago
  57. cdd0279 Fix a typo in PyUnicode_CopyCharacters() documentation. by Serhiy Storchaka · 11 years ago
  58. 8cecc8c Issue #7330: Implement width and precision (ex: "%5.3s") for the format string by Victor Stinner · 11 years ago
  59. 44ea77b Closes #4159: add LaTeX tabular column specifications to tables that otherwise are cut off or have overlapping text. by Georg Brandl · 12 years ago
  60. f4c3a18 Remove redundant sentence from c-api docs (issue #16323) by Andrew Svetlov · 12 years ago
  61. 0fe030b Issue #16323: Fix wrong C API documentation for locale encoding. by Andrew Svetlov · 12 years ago
  62. e7f9037 #16127: remove outdated references to narrow builds. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  63. b79be95 Issue #15444: Use proper spelling for non-ASCII contributor names. by Antoine Pitrou · 12 years ago
  64. fbd4f80 Issue #15444: Use proper spelling for non-ASCII contributor names. by Antoine Pitrou · 12 years ago
  65. 0813168 Issue #14090: fix some minor C API problems in default branch (3.3) by Eli Bendersky · 12 years ago
  66. 6fbd525 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
  67. b2bf01d use full unicode mappings for upper/lower/title case (#12736) by Benjamin Peterson · 13 years ago
  68. 606e19d Fix PyUnicode_Fill() doc: return type is Py_ssize_t, not int by Victor Stinner · 13 years ago
  69. 3fe5531 Add a new PyUnicode_Fill() function by Victor Stinner · 13 years ago
  70. 0d81c13 Issue #13617: Document that the result of the conversion of a Unicode object to by Victor Stinner · 13 years ago
  71. f2ea71f Issue #13560: Add PyUnicode_EncodeLocale() by Victor Stinner · 13 years ago
  72. af02e1c Add PyUnicode_DecodeLocaleAndSize() and PyUnicode_DecodeLocale() by Victor Stinner · 13 years ago
  73. bf6e560 Make PyUnicode_Copy() private => _PyUnicode_Copy() by Victor Stinner · 13 years ago
  74. b682101 Document PyUnicode_Copy() and PyUnicode_EncodeCodePage() by Victor Stinner · 13 years ago
  75. b4938aa Document PyUnicode_WCHAR_KIND by Victor Stinner · 13 years ago
  76. 57735a0 Add missing prefixes by Antoine Pitrou · 13 years ago
  77. b965b39 Elaborate on representations and canonical/legacy unicode objects by Antoine Pitrou · 13 years ago
  78. e6b99a1 Move deprecated functions at the end of their respective sections. by Antoine Pitrou · 13 years ago
  79. 2da16e6 Fix indentation. by Martin v. Löwis · 13 years ago
  80. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  81. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  82. ee12f44 Add versionadded directive to new API function. by Georg Brandl · 13 years ago
  83. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  84. 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
  85. c470a0c #11840: Merge with 3.2. by Ezio Melotti · 13 years ago
  86. c1f0577 #11840: Merge with 3.1. by Ezio Melotti · 13 years ago
  87. 95cd91c #11840: Improve c-api/unicode documentation. Patch by Sandro Tosi. by Ezio Melotti · 13 years ago
  88. 0fbe226 Issue #10831: Document the new formats (%li, %lli, %zi) by Victor Stinner · 14 years ago
  89. 80e788a Rephrase PyUnicode_CompareWithASCIIString() documentation by Victor Stinner · 14 years ago
  90. dc2081f Issue #9738: document encodings of unicode functions by Victor Stinner · 14 years ago
  91. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  92. ab32fec Merged revisions 85572-85573,85606,85609-85622,85624,85626-85627,85629,85631,85633,85635-85636,85638-85639,85641-85642 via svnmerge from by Georg Brandl · 14 years ago
  93. 418cc73 Fix capitalization. by Georg Brandl · 14 years ago
  94. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  95. 62165d6 Document that the 'strict' error handler is used to encode/decode filenames on by Victor Stinner · 14 years ago
  96. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  97. 60203b4 Migrate to Sphinx 1.0 C language constructs. by Georg Brandl · 14 years ago
  98. 4b05466 Merged revisions 84945 via svnmerge from by Georg Brandl · 14 years ago
  99. 23b4f92 Merged revisions 84142 via svnmerge from by Georg Brandl · 14 years ago
  100. 13f959b Merged revisions 83561,83563,83565-83566,83569,83571,83574-83575,83580,83584,83599,83612,83659,83977,84015-84018,84020,84141 via svnmerge from by Georg Brandl · 14 years ago