1. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  2. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  3. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  4. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  5. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  6. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  7. 3794376 PyUnicode_READ_CHAR() ensures that the string is ready by Victor Stinner · 13 years ago
  8. 7a48ff7 Use Py_UCS1 instead of unsigned char in unicodeobject.h by Victor Stinner · 13 years ago
  9. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  10. 9f789e7 _PyUnicode_AsKind() is *not* part of the stable ABI by Victor Stinner · 13 years ago
  11. 4584a5b PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE() by Victor Stinner · 13 years ago
  12. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  13. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  14. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  15. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  16. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  17. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  18. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  19. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  20. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  21. 5ce1b0d Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE by Victor Stinner · 13 years ago
  22. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  23. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 13 years ago
  24. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  25. 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
  26. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  27. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 14 years ago
  28. 0d71116 Issue #9738: Ooops, fix typos in my previous commit (r87506) by Victor Stinner · 14 years ago
  29. dc2081f Issue #9738: document encodings of unicode functions by Victor Stinner · 14 years ago
  30. b550308 Take PyUnicode_TransformDecimalToASCII out of the limited API. by Georg Brandl · 14 years ago
  31. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  32. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  33. 83283c2 Issue #10413: Updated comments to reflect code changes by Alexander Belopolsky · 14 years ago
  34. 09f24bb Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name for by Victor Stinner · 14 years ago
  35. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  36. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  37. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  38. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  39. feb7307 #9210: remove --with-wctype-functions configure option. by Amaury Forgeot d'Arc · 14 years ago
  40. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  41. 4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago
  42. 71133ff Create PyUnicode_strdup() function by Victor Stinner · 14 years ago
  43. c4eb765 Create Py_UNICODE_strcat() function by Victor Stinner · 14 years ago
  44. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  45. 324ac65 #5127: Even on narrow unicode builds, the C functions that access the Unicode by Amaury Forgeot d'Arc · 14 years ago
  46. ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function by Victor Stinner · 14 years ago
  47. 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 14 years ago
  48. 331ea92 Issue #9425: create Py_UNICODE_strrchr() function by Victor Stinner · 14 years ago
  49. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  50. ccbd694 rephrase by Benjamin Peterson · 14 years ago
  51. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  52. 77c3862 Issue #8711: Document PyUnicode_DecodeFSDefault*() functions by Victor Stinner · 14 years ago
  53. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  54. ad465f9 alias PyUnicode_CompareWithASCII by Benjamin Peterson · 14 years ago
  55. dcb2403 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, by Victor Stinner · 14 years ago
  56. 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 15 years ago
  57. 244651a Merged revisions 72283-72284 via svnmerge from by Antoine Pitrou · 15 years ago
  58. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  59. a3b1ac8 Added ',' thousands grouping to int.__format__. See PEP 378. by Eric Smith · 16 years ago
  60. 960cf0f Merged revisions 68167,68276,68292-68293,68344 via svnmerge from by Benjamin Peterson · 16 years ago
  61. 15fafbe Merged revisions 67970-67971 via svnmerge from by Alexandre Vassalotti · 16 years ago
  62. 206e307 Merged revisions 66887,66891,66902-66903,66905-66906,66911-66913,66922,66927-66928,66936,66939-66940,66962,66964,66973 via svnmerge from by Benjamin Peterson · 16 years ago
  63. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  64. 6d7e7a7 Merged revisions 64491 via svnmerge from by Eric Smith · 16 years ago
  65. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  66. b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
  67. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  68. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  69. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  70. 5807c41 Merged revisions 63078 via svnmerge from by Eric Smith · 16 years ago
  71. 9155aa7 Cleanup the Unicode header documentation and formatting a bit. by Marc-André Lemburg · 16 years ago
  72. a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 17 years ago
  73. 190d79e Merged revisions 60408-60440 via svnmerge from by Christian Heimes · 17 years ago
  74. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 17 years ago
  75. 0625e89 Always define Py_USING_UNICODE, 3rd party software may depend on it. A missing declaration can lead to strange bugs as I had to learn the hard way in the upcoming merge by Christian Heimes · 17 years ago
  76. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  77. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  78. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  79. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  80. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  81. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago
  82. e226b55 PEP 3101: Removed _formatter_xxx routines from sysmodule, and made them unicode methods instead (per GvR suggestion). by Eric Smith · 17 years ago
  83. 8a4eb29 Fix refleaks in test_unicode and test_string related to the new format code. by Neal Norwitz · 17 years ago
  84. 7ade648 PEP 3101: Completed string.Formatter class. Reimplemented field_name to object transformation. by Eric Smith · 17 years ago
  85. 8c66326 Implementation of PEP 3101, Advanced String Formatting. by Eric Smith · 17 years ago
  86. 41980ca Apply SF patch #1775604: This adds three new codecs (utf-32, utf-32-le and by Walter Dörwald · 17 years ago
  87. 4738340 Implement PEP 3131. Add isidentifier to str. by Martin v. Löwis · 17 years ago
  88. 13c3e38 Add XID_Start and XID_Continue properties to unicodectype. by Martin v. Löwis · 17 years ago
  89. d78f6cf Whitespace normalization. by Neal Norwitz · 17 years ago
  90. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  91. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  92. 1680713 Add interning of unicode strings by copying the functionality from by Walter Dörwald · 17 years ago
  93. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  94. 14176a5 Add missing #define. by Walter Dörwald · 17 years ago
  95. d203431 Add 'U'/'U#' format characters to Py_BuildValue (and thus by Walter Dörwald · 17 years ago
  96. acaa5a1 Add PyUnicode_FromString(), which create a unicode object from a by Walter Dörwald · 17 years ago
  97. 8d30cc0 Get rid of all #ifdef Py_USING_UNICODE (it is always present now). by Guido van Rossum · 17 years ago
  98. 27d517b Merged revisions 53875-53911 via svnmerge from by Thomas Wouters · 18 years ago
  99. 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
  100. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago