1. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  2. 8813104 Simplify PyUnicode_MAX_CHAR_VALUE by Victor Stinner · 13 years ago
  3. 87da872 Drop extra semicolon. by Martin v. Löwis · 13 years ago
  4. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  5. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  6. db6c7f5 Update C API docs for PEP 393. by Georg Brandl · 13 years ago
  7. b066cc6 Fix PyUnicode_CHARACTER_SIZE and PyUnicode_KIND_SIZE by Victor Stinner · 13 years ago
  8. dbf697a Fix compilation warnings under 64-bit Windows by Antoine Pitrou · 13 years ago
  9. 0f4ee93 Branch merge by Éric Araujo · 13 years ago
  10. 1d4b35f rephrase PyUnicode_1BYTE_KIND documentation by Victor Stinner · 13 years ago
  11. fb9ea8c Don't check for the maximum character when copying from unicodeobject.c by Victor Stinner · 13 years ago
  12. 80a348c Fix typo by Éric Araujo · 13 years ago
  13. 30134f5 Complete documentation of compact ASCII strings by Victor Stinner · 13 years ago
  14. a41463c Document utf8_length and wstr_length states by Victor Stinner · 13 years ago
  15. 7f11ad4 Unicode: document when the wstr pointer is shared with data by Victor Stinner · 13 years ago
  16. 8cfcbed Improve string forms and PyUnicode_Resize() documentation by Victor Stinner · 13 years ago
  17. c3cec78 Add asciilib: similar to ucs1, ucs2 and ucs4 library, but specialized to ASCII by Victor Stinner · 13 years ago
  18. 4d0d54b Document requierements of Unicode kinds by Victor Stinner · 13 years ago
  19. 07de325 More fixes. by Georg Brandl · 13 years ago
  20. c6bc4c6 Fix a few typos in the unicode header. by Georg Brandl · 13 years ago
  21. 4975a9b Fix grammar. by Georg Brandl · 13 years ago
  22. b9275c1 Speedup str[a:b] and PyUnicode_FromKindAndData by Victor Stinner · 13 years ago
  23. 85041a5 _PyUnicode_CheckConsistency() checks utf8 field consistency by Victor Stinner · 13 years ago
  24. a3b334d PyUnicode_Ready() now sets ascii=1 if maxchar < 128 by Victor Stinner · 13 years ago
  25. 910337b Add _PyUnicode_CheckConsistency() macro to help debugging by Victor Stinner · 13 years ago
  26. 3794376 PyUnicode_READ_CHAR() ensures that the string is ready by Victor Stinner · 13 years ago
  27. 7a48ff7 Use Py_UCS1 instead of unsigned char in unicodeobject.h by Victor Stinner · 13 years ago
  28. cd9950f PyUnicode_WriteChar() raises IndexError on invalid index by Victor Stinner · 13 years ago
  29. 9f789e7 _PyUnicode_AsKind() is *not* part of the stable ABI by Victor Stinner · 13 years ago
  30. 4584a5b PyUnicode_CHARACTER_SIZE(): add a reference to PyUnicode_KIND_SIZE() by Victor Stinner · 13 years ago
  31. 034f6cf Add PyUnicode_Copy() function, include it to the public API by Victor Stinner · 13 years ago
  32. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  33. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  34. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  35. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  36. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  37. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  38. be78eaf PyUnicode_CopyCharacters() checks for buffer and character overflow by Victor Stinner · 13 years ago
  39. fb5f5f2 Mark PyUnicode_CONVERT_BYTES as private by Victor Stinner · 13 years ago
  40. 5ce1b0d Set Py_UNICODE_REPLACEMENT_CHARACTER type to Py_UCS4, instead of Py_UNICODE by Victor Stinner · 13 years ago
  41. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  42. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 13 years ago
  43. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  44. 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
  45. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  46. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 14 years ago
  47. 0d71116 Issue #9738: Ooops, fix typos in my previous commit (r87506) by Victor Stinner · 14 years ago
  48. dc2081f Issue #9738: document encodings of unicode functions by Victor Stinner · 14 years ago
  49. b550308 Take PyUnicode_TransformDecimalToASCII out of the limited API. by Georg Brandl · 14 years ago
  50. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  51. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  52. 83283c2 Issue #10413: Updated comments to reflect code changes by Alexander Belopolsky · 14 years ago
  53. 09f24bb Issue #8761: Mangle PyUnicode_CompareWithASCIIString function name for by Victor Stinner · 14 years ago
  54. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  55. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  56. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  57. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  58. feb7307 #9210: remove --with-wctype-functions configure option. by Amaury Forgeot d'Arc · 14 years ago
  59. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  60. 4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago
  61. 71133ff Create PyUnicode_strdup() function by Victor Stinner · 14 years ago
  62. c4eb765 Create Py_UNICODE_strcat() function by Victor Stinner · 14 years ago
  63. fce7fd6 Issue #9549: sys.setdefaultencoding() and PyUnicode_SetDefaultEncoding() by Antoine Pitrou · 14 years ago
  64. 324ac65 #5127: Even on narrow unicode builds, the C functions that access the Unicode by Amaury Forgeot d'Arc · 14 years ago
  65. ef8d95c Issue #9425: Create Py_UNICODE_strncmp() function by Victor Stinner · 14 years ago
  66. 47fcb5b Issue #9542: Create PyUnicode_FSDecoder() function by Victor Stinner · 14 years ago
  67. 331ea92 Issue #9425: create Py_UNICODE_strrchr() function by Victor Stinner · 14 years ago
  68. 952867a #9078: fix some Unicode C API descriptions, in comments and docs. by Georg Brandl · 14 years ago
  69. ccbd694 rephrase by Benjamin Peterson · 14 years ago
  70. ae6265f Issue #8715: Create PyUnicode_EncodeFSDefault() function: Encode a Unicode by Victor Stinner · 14 years ago
  71. 77c3862 Issue #8711: Document PyUnicode_DecodeFSDefault*() functions by Victor Stinner · 14 years ago
  72. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  73. ad465f9 alias PyUnicode_CompareWithASCII by Benjamin Peterson · 14 years ago
  74. dcb2403 Issue #8485: PyUnicode_FSConverter() doesn't accept bytearray object anymore, by Victor Stinner · 14 years ago
  75. 011e842 Issue #5915: Implement PEP 383, Non-decodable Bytes in by Martin v. Löwis · 15 years ago
  76. 244651a Merged revisions 72283-72284 via svnmerge from by Antoine Pitrou · 15 years ago
  77. 0923d1d The other half of Issue #1580: use short float repr where possible. by Eric Smith · 15 years ago
  78. a3b1ac8 Added ',' thousands grouping to int.__format__. See PEP 378. by Eric Smith · 15 years ago
  79. 960cf0f Merged revisions 68167,68276,68292-68293,68344 via svnmerge from by Benjamin Peterson · 16 years ago
  80. 15fafbe Merged revisions 67970-67971 via svnmerge from by Alexandre Vassalotti · 16 years ago
  81. 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
  82. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  83. 6d7e7a7 Merged revisions 64491 via svnmerge from by Eric Smith · 16 years ago
  84. 559e5d7 #2630: Implement PEP 3138. by Georg Brandl · 16 years ago
  85. b2750b5 Move the codec decode type checks to bytes/bytearray.decode(). by Marc-André Lemburg · 16 years ago
  86. a26f8ca Revert r63934 -- it was mixing two patches. by Georg Brandl · 16 years ago
  87. f954c4b Remove meaning of -ttt, but still accept -t option on cmdline for compatibility. by Georg Brandl · 16 years ago
  88. 4a7d76d Refactor and clean up str.format() code (and helpers) in advance of optimizations. by Eric Smith · 16 years ago
  89. 5807c41 Merged revisions 63078 via svnmerge from by Eric Smith · 16 years ago
  90. 9155aa7 Cleanup the Unicode header documentation and formatting a bit. by Marc-André Lemburg · 16 years ago
  91. 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
  92. 190d79e Merged revisions 60408-60440 via svnmerge from by Christian Heimes · 17 years ago
  93. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 17 years ago
  94. 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
  95. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  96. a22e8bd Added all PyTypeObjects to the appropriate header files. by Christian Heimes · 17 years ago
  97. 5d14c2b Merged revisions 59056-59076 via svnmerge from by Christian Heimes · 17 years ago
  98. 5894ba7 Fixed a bug in PyUnicode_DecodeFSDefault. strcmp() returns 0 on success. by Christian Heimes · 17 years ago
  99. 00bc0e0 Patch #1272, by Christian Heimes and Alexandre Vassalotti. by Guido van Rossum · 17 years ago
  100. 7d1df6c Add PyUnicode_AsStringAndSize(), which is like PyUnicode_AsString() but by Guido van Rossum · 17 years ago