1. b153615 PyUnicode_CopyCharacters() uses exceptions instead of assertions by Victor Stinner · 13 years ago
  2. d8f6510 _PyUnicode_Ready() cannot be used on ready strings anymore by Victor Stinner · 13 years ago
  3. bc8b81b Move _PyUnicode_UTF8() and _PyUnicode_UTF8_LENGTH() outside unicodeobject.h by Victor Stinner · 13 years ago
  4. a0702ab Add a note in PyUnicode_CopyCharacters() doc: it doesn't write null character by Victor Stinner · 13 years ago
  5. 6394188 Use the new Py_ARRAY_LENGTH macro by Victor Stinner · 13 years ago
  6. b9dcffb Fix 'c' format of PyUnicode_Format() by Victor Stinner · 13 years ago
  7. c17f540 Oops, fix my previous commit: unicode => to by Victor Stinner · 13 years ago
  8. b15d4d8 PyUnicode_CopyCharacters() marks the string as dirty (reset the hash) by Victor Stinner · 13 years ago
  9. f5ca1a2 PyUnicode_CopyCharacters() fails if 'to' has more than 1 reference by Victor Stinner · 13 years ago
  10. 2aa2b3b Clean up a few tabs that went in with PEP393. by Ezio Melotti · 13 years ago
  11. 48a2f8f #13054: sys.maxunicode is now always 0x10FFFF. by Ezio Melotti · 13 years ago
  12. 506f592 Check size of wchar_t using the preprocessor by Victor Stinner · 13 years ago
  13. 73f01c6 PyUnicode_CopyCharacters() initializes overflow by Victor Stinner · 13 years ago
  14. e57b1c0 Mark PyUnicode_FromUCS[124] as private by Victor Stinner · 13 years ago
  15. ff9e50f Oops, fix Py_MIN/Py_MAX case by Victor Stinner · 13 years ago
  16. 1722216 Mark _PyUnicode_FindMaxCharAndNumSurrogatePairs() as private by Victor Stinner · 13 years ago
  17. 157f83f Strip trailing spaces in unicodeobject.[ch] by Victor Stinner · 13 years ago
  18. 6c7a52a Check for PyUnicode_CopyCharacters() failure 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. 4cb0de2 Rename new macros to conform to naming rules (function macros have "Py" prefix, not "PY"). by Georg Brandl · 13 years ago
  22. 9c6e6a0 don't check that the first character is XID_Continue by Benjamin Peterson · 13 years ago
  23. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  24. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 13 years ago
  25. 0d5f6ad Issue #13012: Allow 'keepends' to be passed as a keyword argument in str.splitlines, bytes.splitlines and bytearray.splitlines. by Mark Dickinson · 13 years ago
  26. f955eb2 Merge 3.2: Fix PyUnicode_AsWideCharString() doc by Victor Stinner · 13 years ago
  27. d88d983 Fix PyUnicode_AsWideCharString() doc: size doesn't contain the null character by Victor Stinner · 13 years ago
  28. 6f2a683 #9200: merge with 3.2. by Ezio Melotti · 13 years ago
  29. 93e7afc #9200: The str.is* methods now work with strings that contain non-BMP characters even in narrow Unicode builds. by Ezio Melotti · 13 years ago
  30. e518d4c merge 3.2 by Benjamin Peterson · 13 years ago
  31. 7a6b44a the named of the character is actually NUL by Benjamin Peterson · 13 years ago
  32. 020340f merge 3.2 by Benjamin Peterson · 13 years ago
  33. 5ad517a NUL -> NULL by Benjamin Peterson · 13 years ago
  34. 269e3ee #12266: merge with 3.2. by Ezio Melotti · 13 years ago
  35. ee8d998 #12266: Fix str.capitalize() to correctly uppercase/lowercase titlecased and cased non-letter characters. by Ezio Melotti · 13 years ago
  36. f8e7543 merge 3.2 (#12732) by Benjamin Peterson · 13 years ago
  37. f413b80 in narrow builds, make sure to test codepoints as identifier characters (closes #12732) by Benjamin Peterson · 13 years ago
  38. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  39. fcdaaa9 merge from 3.2 - Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  40. 53516a8 Fix closes Issue12621 - Fix docstrings of find and rfind methods of bytes/bytearry/unicodeobject. by Senthil Kumaran · 13 years ago
  41. 99b9538 Issue #9642: Uniformize the tests on the availability of the mbcs codec by Victor Stinner · 13 years ago
  42. bc9d8f8 merge from 3.2 by Senthil Kumaran · 13 years ago
  43. 9ebe08d Fix closes issue12471 - wrong TypeError message when '%i' format spec was used. by Senthil Kumaran · 13 years ago
  44. 3cbf14b Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  45. 793b531 Issue #10914: Initialize correctly the filesystem codec when creating a new by Victor Stinner · 13 years ago
  46. bf1253b #6780: merge with 3.2. by Ezio Melotti · 13 years ago
  47. f2b3f78 #6780: merge with 3.1. by Ezio Melotti · 13 years ago
  48. ba42fd5 #6780: fix starts/endswith error message to mention that tuples are accepted too. by Ezio Melotti · 13 years ago
  49. c1ceb64 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  50. 6159ee3 MERGE: startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  51. ac45150 startswith and endswith don't accept None as slice index. Patch by Torsten Becker. (closes #11828) by Jesus Cea · 13 years ago
  52. 5fd4bd3 avoid casting with this nice macro by Benjamin Peterson · 13 years ago
  53. 2f283c2 Fix my previous commit (r88709) for str.encode(errors=...) by Victor Stinner · 13 years ago
  54. a5c68c3 Issue #8923: cache str.encode() result by Victor Stinner · 13 years ago
  55. f3fd733 Remove useless argument of _PyUnicode_AsDefaultEncodedString() by Victor Stinner · 13 years ago
  56. 6d970f4 Issue #10831: PyUnicode_FromFormat() supports %li, %lli and %zi formats by Victor Stinner · 13 years ago
  57. e7faec1 Fix my previous commit (r88702): initialize size_tflag in parse_format_flags() by Victor Stinner · 13 years ago
  58. 9686545 Issue #10829: Refactor PyUnicode_FromFormat() by Victor Stinner · 13 years ago
  59. 2b574a2 Merged revisions 88697 via svnmerge from by Victor Stinner · 13 years ago
  60. 2512a8b Issue #11246: Fix PyUnicode_FromFormat("%V") by Victor Stinner · 13 years ago
  61. 4001847 PEP 7 conformance changes (whitespace only). by Alexander Belopolsky · 13 years ago
  62. 1d52146 Issue #11303: Added shortcuts for utf8 and latin1 encodings. by Alexander Belopolsky · 13 years ago
  63. 659eb84 Merged revisions 88481 via svnmerge from by Victor Stinner · 13 years ago
  64. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 13 years ago
  65. 5ed8b2c Fix PyUnicode_FromFormatV("%c") for non-BMP char by Victor Stinner · 13 years ago
  66. fd34b37 Remove bootstrap code of PyUnicode_AsEncodedString() by Victor Stinner · 13 years ago
  67. b9cc00c Removed unneeded #include by Alexander Belopolsky · 14 years ago
  68. 28a4dce remove (un)transform methods by Benjamin Peterson · 14 years ago
  69. 942af5a Issue #10557: Fixed error messages from float() and other numeric by Alexander Belopolsky · 14 years ago
  70. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  71. 3b9406b Remove redundant check for PyBytes in unicode_encode. by Georg Brandl · 14 years ago
  72. 0252462 #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2. by Georg Brandl · 14 years ago
  73. e5b99f0 Remove redundant includes of headers that are already included by Python.h. by Georg Brandl · 14 years ago
  74. d5af0a5 PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() fails by Victor Stinner · 14 years ago
  75. 2f02a51 PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() fails by Victor Stinner · 14 years ago
  76. c911bbf str, bytes, bytearray docstring: remove unnecessary [...] by Victor Stinner · 14 years ago
  77. e14e212 Fix encode/decode method doc of str, bytes, bytearray types by Victor Stinner · 14 years ago
  78. 16562f4 Merged revisions 86277 via svnmerge from by Eric Smith · 14 years ago
  79. 51d2fd9 Added more to docstrings for str.format, format_map, and __format__. by Eric Smith · 14 years ago
  80. 9696088 Issue #10288: The deprecated family of "char"-handling macros by David Malcolm · 14 years ago
  81. 27bbca6 Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.format(**mapping), except mapping does not get converted to a dict. by Eric Smith · 14 years ago
  82. ad15872 Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS X by Victor Stinner · 14 years ago
  83. f933e1a Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead of by Victor Stinner · 14 years ago
  84. 9a90900 PyUnicode_FromFormatV(): Fix %A format by Victor Stinner · 14 years ago
  85. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  86. ded5acf Merged revisions 81936 via svnmerge from by Georg Brandl · 14 years ago
  87. 168e117 Add an optional size argument to _Py_char2wchar() by Victor Stinner · 14 years ago
  88. f3170cc Use locale encoding if Py_FileSystemDefaultEncoding is not set by Victor Stinner · 14 years ago
  89. 66c221e #9418: first step of moving private string methods to _string module. by Georg Brandl · 14 years ago
  90. beb4135b PyUnicode_AsWideCharString() takes a PyObject*, not a PyUnicodeObject* by Victor Stinner · 14 years ago
  91. 5593d8a Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replace by Victor Stinner · 14 years ago
  92. 1c24bd0 Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul character by Victor Stinner · 14 years ago
  93. 71e91a3 Fix PyUnicode_AsWideCharString(): set *size if size is not NULL by Victor Stinner · 14 years ago
  94. c39211f Issue #9630: Redecode filenames when setting the filesystem encoding by Victor Stinner · 14 years ago
  95. 137c34c Issue #9979: Create function PyUnicode_AsWideCharString(). by Victor Stinner · 14 years ago
  96. d4ac96a use return NULL; it's just as correct by Benjamin Peterson · 14 years ago
  97. 4c7db31 Issue #9738, #9836: Fix refleak introduced by r84704 by Victor Stinner · 14 years ago
  98. 9be0b2e detect non-ascii characters much earlier (plugs ref leak) by Benjamin Peterson · 14 years ago
  99. 1205f27 Issue #9738: PyUnicode_FromFormat() and PyErr_Format() raise an error on by Victor Stinner · 14 years ago
  100. 4640860 Rename PyUnicode_strdup() to PyUnicode_AsUnicodeCopy() by Victor Stinner · 14 years ago